cnmoro commited on
Commit
8d3e224
1 Parent(s): 1c04199

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -156,9 +156,9 @@ async def predict(message, history):
156
  "Authorization": f"Bearer {openrouter_key}" }
157
  body = { "stream": True,
158
  "models": [
159
- "mistralai/mistral-7b-instruct:free",
160
  "openchat/openchat-7b:free",
161
- "huggingfaceh4/zephyr-7b-beta:free"
162
  ],
163
  "route": "fallback",
164
  "max_tokens": 1024,
@@ -211,9 +211,9 @@ gr.ChatInterface(
211
  retry_btn=None,
212
  undo_btn=None,
213
  examples=[
214
- 'Search: RAG LLMS; Question: What are some challenges of implementing a system of RAG with LLMS ?',
215
- 'Search: LLM Self-Play; Question: What are the benefits of using self-play with LLMS?',
216
- 'Search: Brazil Tax Rate; Question: Why does Brazil has a high tax rate?',
217
- 'Search: Stomach medicine; Question: Can stomach medicine cause genetic mutations?'
218
  ]
219
  ).launch()
 
156
  "Authorization": f"Bearer {openrouter_key}" }
157
  body = { "stream": True,
158
  "models": [
159
+ "huggingfaceh4/zephyr-7b-beta:free",
160
  "openchat/openchat-7b:free",
161
+ "mistralai/mistral-7b-instruct:free"
162
  ],
163
  "route": "fallback",
164
  "max_tokens": 1024,
 
211
  retry_btn=None,
212
  undo_btn=None,
213
  examples=[
214
+ 'Search: RAG LLM; Question: What are some challenges of implementing a system of RAG with LLMs?',
215
+ 'Search: LLM Self-Play; Question: What are the benefits of using self-play with LLMs?',
216
+ 'Search: Portable Blockchain; Question: How can a portable blockchain device be implemented?',
217
+ 'Search: 1.58 bit LLMs; Question: How do 1.58 bit LLMs work? Is there an available model to test?'
218
  ]
219
  ).launch()