https://github.com/carloseduardolemos/projeto-chatbot-pythongpt
https://github.com/carloseduardolemos/projeto-chatbot-pythongpt
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/carloseduardolemos/projeto-chatbot-pythongpt
- Owner: CarlosEduardoLemos
- License: mit
- Created: 2025-02-22T18:55:09.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-02-22T19:09:06.000Z (2 months ago)
- Last Synced: 2025-02-22T20:19:37.589Z (2 months ago)
- Language: Python
- Size: 67.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)