Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ client = InferenceClient(
|
|
34 |
|
35 |
VERBOSE = True
|
36 |
MAX_HISTORY = 100
|
37 |
-
|
38 |
|
39 |
|
40 |
def format_prompt(message, history):
|
@@ -383,8 +383,8 @@ iface.launch()
|
|
383 |
'''
|
384 |
gr.ChatInterface(
|
385 |
fn=run,
|
386 |
-
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True,
|
387 |
-
title="
|
388 |
examples=examples,
|
389 |
concurrency_limit=50,
|
390 |
-
).launch(show_api=
|
|
|
34 |
|
35 |
VERBOSE = True
|
36 |
MAX_HISTORY = 100
|
37 |
+
MODEL = "gpt-3.5-turbo" # "gpt-4"
|
38 |
|
39 |
|
40 |
def format_prompt(message, history):
|
|
|
383 |
'''
|
384 |
gr.ChatInterface(
|
385 |
fn=run,
|
386 |
+
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, super_intelligence=True, layout="panel"),
|
387 |
+
title="Fragmixt\nAgents With Agents\nSurf With a Purpose <br>",
|
388 |
examples=examples,
|
389 |
concurrency_limit=50,
|
390 |
+
).launch(show_api=False)
|