An open API service indexing awesome lists of open source software.

https://github.com/carloseduardolemos/projeto-chatbot-pythongpt


https://github.com/carloseduardolemos/projeto-chatbot-pythongpt

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# OpenAI: Curso 2

## ⚙️ Configuração do Ambiente

### Criando e Ativando o Ambiente Virtual

**Windows:**
```bash
python -m venv curso_2_openai
curso_2_openai\Scripts\activate
```

**Mac/Linux:**
```bash
python3 -m venv curso_2_openai
source curso_2_openai/bin/activate
```

### Instalação das Bibliotecas

```bash
pip install numpy openai python-dotenv tiktoken flask opencv-python
```

## 📚 Referências de Leitura

- [Documentação Whisper](https://openai.com/research/whisper)
- [Documentação Dall-E](https://openai.com/research/dall-e)
- [Preços OpenAI](https://openai.com/pricing)
- [Áudios Longos](https://platform.openai.com/docs/guides/speech-to-text/prompting)