Spaces:
Runtime error
Runtime error
NOOOOOOO
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ def predict(message, history, system_prompt, temperature, top_p, top_k, frequenc
|
|
55 |
print(f"{param}={value}")
|
56 |
|
57 |
data = {
|
58 |
-
"model": "meta-llama/Meta-Llama-3.1-
|
59 |
"messages": history_format,
|
60 |
"stream": True,
|
61 |
"temperature": temperature,
|
@@ -140,7 +140,7 @@ with gr.Blocks(theme='gradio/monochrome') as demo:
|
|
140 |
with gr.Row():
|
141 |
with gr.Column(scale=2):
|
142 |
chatbot = gr.Chatbot(value=[])
|
143 |
-
msg = gr.Textbox(label="Message")
|
144 |
with gr.Row():
|
145 |
clear = gr.Button("Clear")
|
146 |
regenerate = gr.Button("Regenerate")
|
|
|
55 |
print(f"{param}={value}")
|
56 |
|
57 |
data = {
|
58 |
+
"model": "meta-llama/Meta-Llama-3.1-70B-Instruct",
|
59 |
"messages": history_format,
|
60 |
"stream": True,
|
61 |
"temperature": temperature,
|
|
|
140 |
with gr.Row():
|
141 |
with gr.Column(scale=2):
|
142 |
chatbot = gr.Chatbot(value=[])
|
143 |
+
msg = gr.Textbox(label="Message (70B for now cuz provider shit itself AGAIN)")
|
144 |
with gr.Row():
|
145 |
clear = gr.Button("Clear")
|
146 |
regenerate = gr.Button("Regenerate")
|