Update main.py
Browse files
main.py
CHANGED
|
@@ -3,7 +3,7 @@ from pydantic import BaseModel
|
|
| 3 |
from transformers import pipeline
|
| 4 |
|
| 5 |
app = FastAPI()
|
| 6 |
-
chatbot = pipeline("conversational", model="
|
| 7 |
|
| 8 |
class Message(BaseModel):
|
| 9 |
text: str
|
|
|
|
| 3 |
from transformers import pipeline
|
| 4 |
|
| 5 |
app = FastAPI()
|
| 6 |
+
chatbot = pipeline("conversational", model="CaptMetal/BuddAi")
|
| 7 |
|
| 8 |
class Message(BaseModel):
|
| 9 |
text: str
|