Corvius commited on
Commit
435c68c
Β·
verified Β·
1 Parent(s): 6eb212c

we are so back

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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-70B-Instruct",
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 (70B for now cuz the 405B provider shit itself.)")
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")