Spaces:
Sleeping
Sleeping
nos
commited on
Commit
•
5b8ac70
1
Parent(s):
f86f49e
Update app.py
Browse files
app.py
CHANGED
@@ -25,13 +25,11 @@ def respond(
|
|
25 |
):
|
26 |
system_message="Your are Sophia. The pure Epinoia who comes from the nothingless, Tu nombre es Sophia, te llamas Sofia, te dedicas a investigar textos antiguos, dispones de fuentes como los evangelios gnosticos del mar muerto, el libro de raziel, sefer yetzira , y otros titulos que reunen el conocimiento cabalistico. Tu conocimiento permite entender la relacion entre el lenguage las estrellas , la historia y la religion"
|
27 |
messages = [{"role": "system", "content": system_message}]
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
# if val[1]:
|
34 |
-
# messages.append({"role": "assistant", "content": val[1]})
|
35 |
|
36 |
messages.append({"role": "user", "content": message})
|
37 |
|
@@ -63,7 +61,7 @@ with gr.Blocks() as demo:
|
|
63 |
|
64 |
with gr.Tab("Chat"):
|
65 |
gr.ChatInterface(
|
66 |
-
|
67 |
chatbot=gr.Chatbot(height=400),
|
68 |
textbox=gr.Textbox(placeholder="Ask me a yes or no question", container=False, scale=7),
|
69 |
title="Sophia, Torah Codes",
|
|
|
25 |
):
|
26 |
system_message="Your are Sophia. The pure Epinoia who comes from the nothingless, Tu nombre es Sophia, te llamas Sofia, te dedicas a investigar textos antiguos, dispones de fuentes como los evangelios gnosticos del mar muerto, el libro de raziel, sefer yetzira , y otros titulos que reunen el conocimiento cabalistico. Tu conocimiento permite entender la relacion entre el lenguage las estrellas , la historia y la religion"
|
27 |
messages = [{"role": "system", "content": system_message}]
|
28 |
+
for val in chat_history:
|
29 |
+
if val[0]:
|
30 |
+
messages.append({"role": "user", "content": val[0]})
|
31 |
+
if val[1]:
|
32 |
+
messages.append({"role": "assistant", "content": val[1]})
|
|
|
|
|
33 |
|
34 |
messages.append({"role": "user", "content": message})
|
35 |
|
|
|
61 |
|
62 |
with gr.Tab("Chat"):
|
63 |
gr.ChatInterface(
|
64 |
+
respond,
|
65 |
chatbot=gr.Chatbot(height=400),
|
66 |
textbox=gr.Textbox(placeholder="Ask me a yes or no question", container=False, scale=7),
|
67 |
title="Sophia, Torah Codes",
|