Robert Pardela
commited on
Commit
·
9baa698
1
Parent(s):
eccb9b4
fix
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
from transformers import pipeline, Conversation
|
2 |
import gradio as gr
|
3 |
|
4 |
-
chatbot = pipeline(
|
5 |
|
6 |
|
7 |
message_list = []
|
|
|
1 |
from transformers import pipeline, Conversation
|
2 |
import gradio as gr
|
3 |
|
4 |
+
chatbot = pipeline(model="epfl-llm/meditron-7b", use_auth_token=True)
|
5 |
|
6 |
|
7 |
message_list = []
|