Spaces:
Runtime error
Runtime error
minor changes
Browse files- app.py +1 -1
- requirements.txt +2 -1
app.py
CHANGED
|
@@ -7,7 +7,7 @@ from diffusers import DiffusionPipeline, FlowMatchEulerDiscreteScheduler, Autoe
|
|
| 7 |
from transformers import CLIPTextModel, CLIPTokenizer,T5EncoderModel, T5TokenizerFast
|
| 8 |
from live_preview_helpers import calculate_shift, retrieve_timesteps, flux_pipe_call_that_returns_an_iterable_of_images
|
| 9 |
|
| 10 |
-
|
| 11 |
from huggingface_hub import hf_hub_download
|
| 12 |
from safetensors.torch import load_file
|
| 13 |
import subprocess
|
|
|
|
| 7 |
from transformers import CLIPTextModel, CLIPTokenizer,T5EncoderModel, T5TokenizerFast
|
| 8 |
from live_preview_helpers import calculate_shift, retrieve_timesteps, flux_pipe_call_that_returns_an_iterable_of_images
|
| 9 |
|
| 10 |
+
from llm_wrapper import run_gemini
|
| 11 |
from huggingface_hub import hf_hub_download
|
| 12 |
from safetensors.torch import load_file
|
| 13 |
import subprocess
|
requirements.txt
CHANGED
|
@@ -4,4 +4,5 @@ torch
|
|
| 4 |
transformers==4.42.4
|
| 5 |
xformers
|
| 6 |
sentencepiece
|
| 7 |
-
peft==0.12.0
|
|
|
|
|
|
| 4 |
transformers==4.42.4
|
| 5 |
xformers
|
| 6 |
sentencepiece
|
| 7 |
+
peft==0.12.0
|
| 8 |
+
google-genai
|