Update app.py
Browse files
app.py
CHANGED
|
@@ -2,7 +2,7 @@ import gradio as gr
|
|
| 2 |
from transformers import pipeline
|
| 3 |
import requests
|
| 4 |
|
| 5 |
-
#
|
| 6 |
standard_model = pipeline("conversational", model="google/mt5-base")
|
| 7 |
premium_model = pipeline("conversational", model="google/mt5-base")
|
| 8 |
|
|
|
|
| 2 |
from transformers import pipeline
|
| 3 |
import requests
|
| 4 |
|
| 5 |
+
# Use a model that supports conversational tasks
|
| 6 |
standard_model = pipeline("conversational", model="google/mt5-base")
|
| 7 |
premium_model = pipeline("conversational", model="google/mt5-base")
|
| 8 |
|