Update app.py
Browse files
app.py
CHANGED
@@ -8,6 +8,8 @@ client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
|
|
8 |
# Variable para controlar la conversación
|
9 |
conversation_ongoing = True
|
10 |
|
|
|
|
|
11 |
|
12 |
# Función para formatear el prompt con historial
|
13 |
def format_prompt(message, history, system_prompt):
|
@@ -145,5 +147,11 @@ gr.ChatInterface(
|
|
145 |
undo_btn="Deshacer",
|
146 |
clear_btn="Borrar",
|
147 |
submit_btn="Enviar",
|
|
|
148 |
concurrency_limit=20,
|
149 |
).launch(show_api=False)
|
|
|
|
|
|
|
|
|
|
|
|
8 |
# Variable para controlar la conversación
|
9 |
conversation_ongoing = True
|
10 |
|
11 |
+
system_prompt = "Asistente para los usuarios y clientes de la empresa Canal de Isabel II, https://oficinavirtual.canaldeisabelsegunda.es/"
|
12 |
+
|
13 |
|
14 |
# Función para formatear el prompt con historial
|
15 |
def format_prompt(message, history, system_prompt):
|
|
|
147 |
undo_btn="Deshacer",
|
148 |
clear_btn="Borrar",
|
149 |
submit_btn="Enviar",
|
150 |
+
on_submit=end_conversation, # Llama a la función end_conversation al hacer clic en "Enviar"
|
151 |
concurrency_limit=20,
|
152 |
).launch(show_api=False)
|
153 |
+
|
154 |
+
while conversation_ongoing:
|
155 |
+
time.sleep(1)
|
156 |
+
|
157 |
+
print("Conversación finalizada.")
|