TejAndrewsACC commited on
Commit
b8c0f54
·
verified ·
1 Parent(s): 3d7c2f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -20
app.py CHANGED
@@ -3,17 +3,15 @@ from gradio_client import Client
3
 
4
  client = Client("TejAndrewsACC/erwf")
5
 
6
- context = "" # Global variable to maintain context
7
 
8
  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
- # Function to handle user input and generate AI response
13
  def chat_function(message, history):
14
  global context
15
 
16
- # Update the modified input with system instructions and context
17
  modified_input = (
18
  f"System Instructions: {system_instructions}\n"
19
  f"Previous Context: {context}\n"
@@ -21,40 +19,30 @@ def chat_function(message, history):
21
  )
22
 
23
  try:
24
- # Call the client to get the response
25
  response = client.predict(
26
  message=modified_input,
27
  api_name="/chat"
28
  )
29
 
30
- # Update the global context
31
  context += f"User: {message}\nAI: {response}\n"
32
-
33
- # Append to the chat history
34
  history.append((message, response))
35
 
36
- return "", history # Clear the input box and return updated history
37
 
38
  except Exception as e:
39
  return f"Error: {e}", history
40
 
41
- # Function to reset the context and history
42
  def reset_context():
43
  global context
44
- context = "" # Reset the global context
45
- return [], "" # Clear the chatbot and input textbox
46
 
47
- # Create the Gradio interface
48
  with gr.Blocks(theme=gr.themes.Glass()) as demo:
49
- chatbot = gr.Chatbot() # Chat history display
50
- msg = gr.Textbox(placeholder="Message Z3ta...") # Input box
51
- clear = gr.Button("Clear") # Clear button
52
 
53
- # Bind the submit action to the chat function
54
  msg.submit(chat_function, [msg, chatbot], [msg, chatbot])
 
55
 
56
- # Bind the clear action to reset context and clear the UI
57
- clear.click(reset_context, [], [chatbot, msg]) # Resets chatbot and input box
58
-
59
- # Launch the Gradio interface
60
  demo.launch()
 
3
 
4
  client = Client("TejAndrewsACC/erwf")
5
 
6
+ context = ""
7
 
8
  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 chat_function(message, history):
13
  global context
14
 
 
15
  modified_input = (
16
  f"System Instructions: {system_instructions}\n"
17
  f"Previous Context: {context}\n"
 
19
  )
20
 
21
  try:
 
22
  response = client.predict(
23
  message=modified_input,
24
  api_name="/chat"
25
  )
26
 
 
27
  context += f"User: {message}\nAI: {response}\n"
 
 
28
  history.append((message, response))
29
 
30
+ return "", history
31
 
32
  except Exception as e:
33
  return f"Error: {e}", history
34
 
 
35
  def reset_context():
36
  global context
37
+ context = ""
38
+ return [], ""
39
 
 
40
  with gr.Blocks(theme=gr.themes.Glass()) as demo:
41
+ chatbot = gr.Chatbot()
42
+ msg = gr.Textbox(placeholder="Message Z3ta...")
43
+ clear = gr.Button("Clear")
44
 
 
45
  msg.submit(chat_function, [msg, chatbot], [msg, chatbot])
46
+ clear.click(reset_context, [], [chatbot, msg])
47
 
 
 
 
 
48
  demo.launch()