Barto517 commited on
Commit
02a0ba8
verified
1 Parent(s): 39c4cdb

requirements.txt

Browse files

streamlit: para crear la interfaz de usuario de chat.
openai: para interactuar con la API de OpenAI (aseg煤rate de usar una versi贸n compatible con tu c贸digo).
requests: para hacer peticiones HTTP y permitir la b煤squeda en internet.
pillow: para procesar im谩genes.
python-dotenv: para cargar claves de API de manera segura desde un archivo .env.
beautifulsoup4: para hacer scraping y extraer contenido de p谩ginas web de manera sencilla.

Files changed (1) hide show
  1. requirements.txt +4 -10
requirements.txt CHANGED
@@ -1,14 +1,8 @@
1
- openai
2
  streamlit
 
3
  requests
4
- transformers
5
- torch
6
  python-dotenv
7
- pandas
8
- matplotlib
9
- plotly
10
- nltk
11
- streamlit-aggrid
12
- sentence-transformers
13
- tqdm
14
 
 
 
1
  streamlit
2
+ openai
3
  requests
4
+ pillow
 
5
  python-dotenv
6
+ beautifulsoup4
7
+
 
 
 
 
 
8