Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ from transformers import pipeline
|
|
12 |
messages = [
|
13 |
{"role": "user", "content": "Who are you?"},
|
14 |
]
|
15 |
-
pipe = pipeline("text-generation", model="meta-llama/Llama-3.1-8B-Instruct")
|
16 |
pipe(messages)
|
17 |
|
18 |
|
|
|
12 |
messages = [
|
13 |
{"role": "user", "content": "Who are you?"},
|
14 |
]
|
15 |
+
pipe = pipeline("text-generation", model="meta-llama/Llama-3.1-8B-Instruct",token=TOKEN)
|
16 |
pipe(messages)
|
17 |
|
18 |
|