VicGerardoPR commited on
Commit
60cca92
verified
1 Parent(s): 21f0648

Upload 3 files

Browse files
Files changed (3) hide show
  1. README.md +42 -3
  2. app.py +46 -0
  3. requirements.txt +2 -0
README.md CHANGED
@@ -1,12 +1,51 @@
1
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  title: ChatBotOpenAi
3
  emoji: 馃憗
4
  colorFrom: red
5
  colorTo: red
 
 
6
  sdk: streamlit
7
- sdk_version: 1.35.0
8
  app_file: app.py
9
  pinned: false
10
- ---
 
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ title: Chatbot Streamlit
2
+ emoji: 馃
3
+ colorFrom: blue
4
+ colorTo: green
5
+ <<<<<<< HEAD
6
+ sdk: streamlit
7
+ app_file: app.py
8
+ pinned: false
9
+ Chatbot con openAi y Streamlit
10
+ Este es un chatbot simple construido utilizando el modelo openAi y Streamlit.
11
+
12
+ C贸mo ejecutar localmente
13
+ Clona el repositorio:
14
+ git clone https://github.com/tu-usuario/tu-repo.git
15
+ Instala las dependencias:
16
+ cd tu-repo
17
+ pip install -r requirements.txt
18
+ Ejecuta la aplicaci贸n:
19
+ streamlit run app.py
20
+ Desplegado en Hugging Face Spaces
21
+ Puedes ver la aplicaci贸n desplegada en Hugging Face Spaces.
22
+
23
  title: ChatBotOpenAi
24
  emoji: 馃憗
25
  colorFrom: red
26
  colorTo: red
27
+ =======
28
+ >>>>>>> b3f8e29 (Cambios)
29
  sdk: streamlit
 
30
  app_file: app.py
31
  pinned: false
32
+ <<<<<<< HEAD
33
+
34
 
35
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
36
+
37
+ =======
38
+ Chatbot con openAi y Streamlit
39
+ Este es un chatbot simple construido utilizando el modelo openAi y Streamlit.
40
+
41
+ C贸mo ejecutar localmente
42
+ Clona el repositorio:
43
+ git clone https://github.com/tu-usuario/tu-repo.git
44
+ Instala las dependencias:
45
+ cd tu-repo
46
+ pip install -r requirements.txt
47
+ Ejecuta la aplicaci贸n:
48
+ streamlit run app.py
49
+ Desplegado en Hugging Face Spaces
50
+ Puedes ver la aplicaci贸n desplegada en Hugging Face Spaces.
51
+ >>>>>>> b3f8e29 (Cambios)
app.py ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import openai
3
+ import os
4
+
5
+ # Configura la clave de la API de OpenAI
6
+ openai.api_key = os.getenv('OPENAI_API_KEY')
7
+
8
+ # Funci贸n para obtener la respuesta del chatbot
9
+ def get_chatbot_response(prompt):
10
+ response = openai.Completion.create(
11
+ engine="davinci-codex", # Puedes cambiar el motor seg煤n tu suscripci贸n
12
+ prompt=prompt,
13
+ max_tokens=150,
14
+ n=1,
15
+ stop=None,
16
+ temperature=0.9,
17
+ )
18
+ return response.choices[0].text.strip()
19
+
20
+ # Configurar la p谩gina de Streamlit
21
+ st.title('Chatbot con OpenAI')
22
+ st.write("Interact煤a con el chatbot ingresando tu mensaje a continuaci贸n.")
23
+
24
+ # Inicializar el estado de la sesi贸n para almacenar el historial del chat
25
+ if 'history' not in st.session_state:
26
+ st.session_state.history = []
27
+
28
+ # Formulario de entrada del usuario
29
+ with st.form(key='chat_form'):
30
+ user_input = st.text_input("T煤: ")
31
+ submit_button = st.form_submit_button(label='Enviar')
32
+
33
+ # Procesar la entrada del usuario
34
+ if submit_button and user_input:
35
+ # Obtener la respuesta del chatbot
36
+ response = get_chatbot_response(user_input)
37
+
38
+ # Actualizar el historial del chat
39
+ st.session_state.history.append({"user": user_input, "bot": response})
40
+
41
+ # Mostrar el historial del chat
42
+ if st.session_state.history:
43
+ for chat in st.session_state.history:
44
+ st.write(f"T煤: {chat['user']}")
45
+ st.write(f"Bot: {chat['bot']}")
46
+ st.write("---")
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ streamlit
2
+ openai