Daemontatox commited on
Commit
dbc8dea
·
verified ·
1 Parent(s): b73e83c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -156,16 +156,16 @@ def log_to_qdrant(question: str, answer: str):
156
 
157
 
158
  llm = ChatOpenAI(
159
- model="cognitivecomputations/Dolphin3.0-Mistral-24B",
160
  temperature=0.1,
161
  max_tokens=None,
162
  timeout=None,
163
  max_retries=3,
164
- # api_key=OPENAPI_KEY,# if you prefer to pass api key in directly instaed of using env vars
165
  # base_url="https://openrouter.ai/api/v1",
166
  stream=True,
167
- api_key=CHUTES_KEY,
168
- base_url="https://llm.chutes.ai/v1/",
169
 
170
  )
171
 
@@ -341,10 +341,10 @@ def clear_chat():
341
  # Gradio Interface
342
  with gr.Blocks() as iface:
343
  gr.Image("Image.jpg", width=800, height=200, show_label=False, show_download_button=False)
344
- gr.Markdown("# MaxWell 7.0.0 Deepseek")
345
  gr.Markdown('### Patch notes')
346
  gr.Markdown("""
347
- **Ultra Fast Deepseek**
348
 
349
  """)
350
 
 
156
 
157
 
158
  llm = ChatOpenAI(
159
+ model="meta-llama/llama-4-maverick:free",
160
  temperature=0.1,
161
  max_tokens=None,
162
  timeout=None,
163
  max_retries=3,
164
+ api_key=OPENAPI_KEY,# if you prefer to pass api key in directly instaed of using env vars
165
  # base_url="https://openrouter.ai/api/v1",
166
  stream=True,
167
+ # api_key=CHUTES_KEY,
168
+ base_url="https://openrouter.ai/api/v1",
169
 
170
  )
171
 
 
341
  # Gradio Interface
342
  with gr.Blocks() as iface:
343
  gr.Image("Image.jpg", width=800, height=200, show_label=False, show_download_button=False)
344
+ gr.Markdown("# MaxWell 8.0.0 llama 4 (Maverick)")
345
  gr.Markdown('### Patch notes')
346
  gr.Markdown("""
347
+ **New Human Like Custom Llama 4**
348
 
349
  """)
350