Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ class Query(BaseModel):
|
|
| 22 |
app = FastAPI(title="Financial Chatbot API")
|
| 23 |
|
| 24 |
# Load base model
|
| 25 |
-
base_model_name = "meta-llama/
|
| 26 |
model = AutoModelForCausalLM.from_pretrained(
|
| 27 |
base_model_name,
|
| 28 |
device_map="auto",
|
|
|
|
| 22 |
app = FastAPI(title="Financial Chatbot API")
|
| 23 |
|
| 24 |
# Load base model
|
| 25 |
+
base_model_name = "meta-llama/Llama-3.2-3B" # Update this if different base model
|
| 26 |
model = AutoModelForCausalLM.from_pretrained(
|
| 27 |
base_model_name,
|
| 28 |
device_map="auto",
|