Spaces:
Runtime error
Runtime error
Dacho688
commited on
Commit
·
1420c0f
1
Parent(s):
551e5f1
Update package versions and model
Browse files- __pycache__/streaming.cpython-312.pyc +0 -0
- app.py +1 -1
- requirements.txt +2 -1
__pycache__/streaming.cpython-312.pyc
ADDED
Binary file (1.97 kB). View file
|
|
app.py
CHANGED
@@ -11,7 +11,7 @@ from huggingface_hub import login
|
|
11 |
#login
|
12 |
login(os.getenv("HUGGINGFACEHUB_API_TOKEN"))
|
13 |
#define llm engine
|
14 |
-
llm_engine = HfEngine("meta-llama/
|
15 |
#load tools
|
16 |
image_gen_tool = load_tool("huggingface-tools/text-to-image")
|
17 |
gradio_pg_tool = StableDiffusionPromptGeneratorTool()
|
|
|
11 |
#login
|
12 |
login(os.getenv("HUGGINGFACEHUB_API_TOKEN"))
|
13 |
#define llm engine
|
14 |
+
llm_engine = HfEngine("meta-llama/Llama-3.3-70B-Instruct")
|
15 |
#load tools
|
16 |
image_gen_tool = load_tool("huggingface-tools/text-to-image")
|
17 |
gradio_pg_tool = StableDiffusionPromptGeneratorTool()
|
requirements.txt
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
-
|
|
|
2 |
gradio_tools
|
|
|
1 |
+
transformers == 4.43.3
|
2 |
+
huggingface_hub == 0.34.4
|
3 |
gradio_tools
|