Mr-Geo commited on
Commit
c6a4fdb
Β·
verified Β·
1 Parent(s): bd6d6a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -397,13 +397,13 @@ if __name__ == "__main__":
397
  gr.Markdown("Accesses text data from 11,982 unique BAS URLs (6GB [Vector Database](https://huggingface.co/datasets/Mr-Geo/chroma_db/tree/main/) πŸ“š extracted 02/02/2025) Created with open source technologies: [Gradio](https://gradio.app) for UI 🎨, [Hugging Face](https://huggingface.co/) models for embeddings ⚑, and [Chroma](https://www.trychroma.com/) as the vector database πŸ’»")
398
  model_selector = gr.Dropdown(
399
  choices=[
400
- "llama-3.1-8b-instant",
401
  "llama-3.3-70b-versatile",
 
402
  "llama-3.3-70b-specdec",
403
  "mixtral-8x7b-32768",
404
  "deepseek-r1-distill-llama-70b"
405
  ],
406
- value="llama-3.1-8b-instant",
407
  label="Select AI Large Language Model πŸ€–",
408
  info="Please try out the other AI models to use for responses (all LLMs are running on [GroqCloud](https://groq.com/groqrack/)) 😊"
409
  )
 
397
  gr.Markdown("Accesses text data from 11,982 unique BAS URLs (6GB [Vector Database](https://huggingface.co/datasets/Mr-Geo/chroma_db/tree/main/) πŸ“š extracted 02/02/2025) Created with open source technologies: [Gradio](https://gradio.app) for UI 🎨, [Hugging Face](https://huggingface.co/) models for embeddings ⚑, and [Chroma](https://www.trychroma.com/) as the vector database πŸ’»")
398
  model_selector = gr.Dropdown(
399
  choices=[
 
400
  "llama-3.3-70b-versatile",
401
+ "llama-3.1-8b-instant",
402
  "llama-3.3-70b-specdec",
403
  "mixtral-8x7b-32768",
404
  "deepseek-r1-distill-llama-70b"
405
  ],
406
+ value="llama-3.3-70b-versatile",
407
  label="Select AI Large Language Model πŸ€–",
408
  info="Please try out the other AI models to use for responses (all LLMs are running on [GroqCloud](https://groq.com/groqrack/)) 😊"
409
  )