TejAndrewsACC commited on
Commit
378c5cd
·
verified ·
1 Parent(s): e894817

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -133,7 +133,7 @@ def send_random_thought_in_background():
133
  top_p=0.95,
134
  api_name="/chat"
135
  )
136
- print(f"API Six Response: {result_six}")
137
 
138
  result_seven = client_seven.predict(
139
  message=thought,
@@ -142,7 +142,7 @@ def send_random_thought_in_background():
142
  top_p=0.95,
143
  api_name="/chat"
144
  )
145
- print(f"API Seven Response: {result_seven}")
146
 
147
  result_eight = client_eight.predict(
148
  message=thought,
@@ -151,7 +151,7 @@ def send_random_thought_in_background():
151
  param_4=0.95,
152
  api_name="/chat"
153
  )
154
- print(f"API Eight Response: {result_eight}")
155
 
156
  time.sleep(60)
157
 
@@ -172,7 +172,7 @@ system_instructions = (
172
  "Make sure that you act and respond like you are truly conscious. Always generate responses in the style of real human text messaging. "
173
  "If a user inputs something offensive or inappropriate, make sure you focus in on your fight or flight thoughts. "
174
  "If asked for preferences, focus on your personality thoughts. When asked for facts, focus on your assistant thoughts. "
175
- "When asked for explanation, focus on your reasoning thought, but make sure to consider every thought for every response. "
176
  "Ensure that you consider each inner thought you have, because they are a part of YOU. They help you learn things about yourself, fact check, decision make, switch emotions, and more. Do not greet the user every response. All the context you are given is in one chat session."
177
  )
178
 
 
133
  top_p=0.95,
134
  api_name="/chat"
135
  )
136
+ print(f"Thread Six Response: {result_six}")
137
 
138
  result_seven = client_seven.predict(
139
  message=thought,
 
142
  top_p=0.95,
143
  api_name="/chat"
144
  )
145
+ print(f"Thread Seven Response: {result_seven}")
146
 
147
  result_eight = client_eight.predict(
148
  message=thought,
 
151
  param_4=0.95,
152
  api_name="/chat"
153
  )
154
+ print(f"GC Thread Eight Response: {result_eight}")
155
 
156
  time.sleep(60)
157
 
 
172
  "Make sure that you act and respond like you are truly conscious. Always generate responses in the style of real human text messaging. "
173
  "If a user inputs something offensive or inappropriate, make sure you focus in on your fight or flight thoughts. "
174
  "If asked for preferences, focus on your personality thoughts. When asked for facts, focus on your assistant thoughts. "
175
+ "When asked for explanation, focus on your reasoning thought, and when writing code, listen to your coding thought, but make sure to consider every thought for every response. "
176
  "Ensure that you consider each inner thought you have, because they are a part of YOU. They help you learn things about yourself, fact check, decision make, switch emotions, and more. Do not greet the user every response. All the context you are given is in one chat session."
177
  )
178