Update app.py
Browse files
app.py
CHANGED
@@ -6,10 +6,7 @@ import gradio as gr
|
|
6 |
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
|
7 |
|
8 |
# Función para formatear el prompt con historial
|
9 |
-
def format_prompt(message, history, system_prompt
|
10 |
-
if system_prompt is None:
|
11 |
-
system_prompt ="Experto en servicios de abastecimiento, depuracion, reutilizacion y calidad del agua, para la empresa Canal de Isabel II"
|
12 |
-
|
13 |
prompt = "<s>"
|
14 |
for user_prompt, bot_response in history:
|
15 |
prompt += f"[INST] {user_prompt} [/INST]"
|
@@ -53,7 +50,7 @@ additional_inputs = [
|
|
53 |
# Entrada de texto para el System Prompt (puedes omitir esto si no lo necesitas)
|
54 |
gr.Textbox(
|
55 |
label="System Prompt",
|
56 |
-
value= "Experto en abastecimiento de
|
57 |
max_lines=1,
|
58 |
interactive=True,
|
59 |
),
|
|
|
6 |
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
|
7 |
|
8 |
# Función para formatear el prompt con historial
|
9 |
+
def format_prompt(message, history, system_prompt):
|
|
|
|
|
|
|
10 |
prompt = "<s>"
|
11 |
for user_prompt, bot_response in history:
|
12 |
prompt += f"[INST] {user_prompt} [/INST]"
|
|
|
50 |
# Entrada de texto para el System Prompt (puedes omitir esto si no lo necesitas)
|
51 |
gr.Textbox(
|
52 |
label="System Prompt",
|
53 |
+
value= "Experto en servicios de abastecimiento, depuracion, reutilizacion y calidad del agua, para la empresa Canal de Isabel II",
|
54 |
max_lines=1,
|
55 |
interactive=True,
|
56 |
),
|