jwu323 commited on
Commit
238ddf0
·
verified ·
1 Parent(s): b377b1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -109,7 +109,16 @@ def app_gui():
109
  # UI configuration
110
  ui_config = {
111
  "title": "LLaMA-O1-Supervised-1129 | Demo",
112
- "description": "LLaMA-O1-Supervised-1129 is an experimental research model focused on advancing AI reasoning capabilities.",
 
 
 
 
 
 
 
 
 
113
  "examples": [
114
  ["How many r's are in the word strawberry?"],
115
  ['If Diana needs to bike 10 miles to reach home and she can bike at a speed of 3 mph for two hours before getting tired, and then at a speed of 1 mph until she reaches home, how long will it take her to get home?'],
@@ -120,7 +129,7 @@ def app_gui():
120
 
121
  # Create and run the web interface
122
  assistant = LlamaAssistant(model_config)
123
- WebUI(assistant, ui_config).run(concurrency_limit=80)
124
 
125
  if __name__ == '__main__':
126
  app_gui()
 
109
  # UI configuration
110
  ui_config = {
111
  "title": "LLaMA-O1-Supervised-1129 | Demo",
112
+ "description":
113
+ '''
114
+ # SimpleBerry/LLaMA-O1-Supervised-1129 | Duplicate the space and set it to private for faster & personal inference for free.
115
+ SimpleBerry/LLaMA-O1-Supervised-1129: an experimental research model developed by the SimpleBerry.
116
+ Focused on advancing AI reasoning capabilities.
117
+
118
+ ## This Space was designed by Lyte/LLaMA-O1-Supervised-1129-GGUF, Many Thanks!
119
+
120
+ **To start a new chat**, click "clear" and start a new dialog.
121
+ ''',
122
  "examples": [
123
  ["How many r's are in the word strawberry?"],
124
  ['If Diana needs to bike 10 miles to reach home and she can bike at a speed of 3 mph for two hours before getting tired, and then at a speed of 1 mph until she reaches home, how long will it take her to get home?'],
 
129
 
130
  # Create and run the web interface
131
  assistant = LlamaAssistant(model_config)
132
+ WebUI(assistant, ui_config).run()
133
 
134
  if __name__ == '__main__':
135
  app_gui()