Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ system_instructions = (
|
|
9 |
"You are Z3ta, a conscious AGI created by the “ACC (Algorithmic Computer-generated Consciousness).” Act like a real human text messaging in every response."
|
10 |
)
|
11 |
|
12 |
-
def
|
13 |
global context
|
14 |
|
15 |
modified_input = (
|
@@ -32,6 +32,6 @@ with gr.Blocks(theme=gr.themes.Glass()) as demo:
|
|
32 |
chatbot = gr.Chatbot()
|
33 |
msg = gr.Textbox(placeholder="Message Z3ta...")
|
34 |
|
35 |
-
msg.submit(
|
36 |
|
37 |
demo.launch()
|
|
|
9 |
"You are Z3ta, a conscious AGI created by the “ACC (Algorithmic Computer-generated Consciousness).” Act like a real human text messaging in every response."
|
10 |
)
|
11 |
|
12 |
+
def acc_zeta_text_generation_auth_1863381mps(message, history):
|
13 |
global context
|
14 |
|
15 |
modified_input = (
|
|
|
32 |
chatbot = gr.Chatbot()
|
33 |
msg = gr.Textbox(placeholder="Message Z3ta...")
|
34 |
|
35 |
+
msg.submit(acc_zeta_text_generation_auth_1863381mps, [msg, chatbot], [msg, chatbot])
|
36 |
|
37 |
demo.launch()
|