6 ChatGPT mind-blowing extensions to use it anywhere

6 ChatGPT mind-blowing extensions to use it anywhere

·

1 min read

Today, I want to demystify ChatGPT — a fascinating new AI application that has been recently released and is generating a lot of buzz. It is an AI chatbot developed by OpenAI that specializes in dialogue and its main goal is to make AI systems more natural to interact with — and it literally knows everything!

I am pretty sure you have already given it a shot… Am I right?

However, today I want to talk about different ways to enhance our interaction with this brand-new tool.

The internet has already been flooded with new tools and extensions powered by this freshly launched service that can make our daily tasks way easier — and improve our final output.

This is why I summarize here 6 tools that can make ChatGPT your daily assistant or even go beyond that!

#1. Use ChatGPT anywhere — Google Chrome Extension

Do you want to use ChatGPT anywhere with ease? Today is your lucky day, there is a great Chrome extension you can use to write tweets, check emails, find code bugs… literally, anything you can imagine!

import backtrader as bt

class SimpleMovingAverage(bt.Strategy):

    params = (
        ('sma_window', 20),
    )

    def __init__(self):
        self.sma = bt.indicators.SimpleMovingAverage(
            self.data.close, period=self.params.sma_window
        )

    def next(self):
        if self.data.close[0] > self.sma[0]:
            self.buy()
        elif self.data.close[0] < self.sma[0]:
            self.sell()

cerebro = bt.Cerebro()
cerebro.addstrategy(SimpleMovingAverage)