Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ from fastapi import FastAPI
|
|
7 |
from transformers import pipeline
|
8 |
|
9 |
# ✅ Load Hugging Face models dynamically
|
10 |
-
code_generator = pipeline("text-generation", model="
|
11 |
user_input_processor = pipeline("text-generation", model="tiiuae/falcon-7b-instruct")
|
12 |
table_analyzer = pipeline("table-question-answering", model="google/tapas-large")
|
13 |
image_captioner = pipeline("image-to-text", model="Salesforce/blip2-opt-2.7b")
|
|
|
7 |
from transformers import pipeline
|
8 |
|
9 |
# ✅ Load Hugging Face models dynamically
|
10 |
+
code_generator = pipeline("text-generation", model="mistralai/Mistral-7B-Instruct-v0.2")
|
11 |
user_input_processor = pipeline("text-generation", model="tiiuae/falcon-7b-instruct")
|
12 |
table_analyzer = pipeline("table-question-answering", model="google/tapas-large")
|
13 |
image_captioner = pipeline("image-to-text", model="Salesforce/blip2-opt-2.7b")
|