ikraamkb commited on
Commit
7080b35
·
verified ·
1 Parent(s): 3d69f10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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="bigcode/starcoder")
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")