Baptiste Gaultier
commited on
Commit
·
5b055f7
1
Parent(s):
564ea08
Revert "Update to Meta-Llama-3.1-8B-Instruct"
Browse filesThis reverts commit 4e5b8b9a6c5b2d8ae7fd6207f31410b02261c310.
- app.py +1 -1
- requirements.txt +2 -2
app.py
CHANGED
@@ -4,7 +4,7 @@ import os
|
|
4 |
|
5 |
HF_TOKEN = os.getenv('HF_TOKEN')
|
6 |
|
7 |
-
client = InferenceClient("meta-llama/Meta-Llama-3
|
8 |
|
9 |
def respond(
|
10 |
message,
|
|
|
4 |
|
5 |
HF_TOKEN = os.getenv('HF_TOKEN')
|
6 |
|
7 |
+
client = InferenceClient("meta-llama/Meta-Llama-3-8B-Instruct", token=HF_TOKEN)
|
8 |
|
9 |
def respond(
|
10 |
message,
|
requirements.txt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
|
2 |
minijinja==2.0.1
|
3 |
-
gradio==4.
|
|
|
1 |
+
huggingface_hub==0.22.2
|
2 |
minijinja==2.0.1
|
3 |
+
gradio==4.33.0
|