Spaces:
Runtime error
Runtime error
we are so back
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ async def predict(message, history, system_prompt, temperature, top_p, top_k, fr
|
|
56 |
print(f"{param}={value}")
|
57 |
|
58 |
data = {
|
59 |
-
"model": "meta-llama/Meta-Llama-3.1-
|
60 |
"messages": history_format,
|
61 |
"stream": True,
|
62 |
"temperature": temperature,
|
@@ -205,7 +205,7 @@ with gr.Blocks(theme='gradio/monochrome') as demo:
|
|
205 |
with gr.Row():
|
206 |
with gr.Column(scale=2):
|
207 |
chatbot = gr.Chatbot(value=[])
|
208 |
-
msg = gr.Textbox(label="Message
|
209 |
with gr.Row():
|
210 |
clear = gr.Button("Clear")
|
211 |
regenerate = gr.Button("Regenerate")
|
|
|
56 |
print(f"{param}={value}")
|
57 |
|
58 |
data = {
|
59 |
+
"model": "meta-llama/Meta-Llama-3.1-405B-Instruct",
|
60 |
"messages": history_format,
|
61 |
"stream": True,
|
62 |
"temperature": temperature,
|
|
|
205 |
with gr.Row():
|
206 |
with gr.Column(scale=2):
|
207 |
chatbot = gr.Chatbot(value=[])
|
208 |
+
msg = gr.Textbox(label="Message")
|
209 |
with gr.Row():
|
210 |
clear = gr.Button("Clear")
|
211 |
regenerate = gr.Button("Regenerate")
|