Robert Pardela commited on
Commit ·
fce840a
1
Parent(s): 7179ea7
init light
Browse files- .gitignore +1 -0
- app.py +1 -1
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.env
|
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
from transformers import pipeline, Conversation
|
| 2 |
import gradio as gr
|
| 3 |
|
| 4 |
-
chatbot = pipeline("text-generation", model="epfl-llm/meditron-
|
| 5 |
|
| 6 |
|
| 7 |
message_list = []
|
|
|
|
| 1 |
from transformers import pipeline, Conversation
|
| 2 |
import gradio as gr
|
| 3 |
|
| 4 |
+
chatbot = pipeline("text-generation", model="epfl-llm/meditron-7b", use_auth_token=True)
|
| 5 |
|
| 6 |
|
| 7 |
message_list = []
|