Spaces:
Runtime error
Runtime error
LanHarmony
commited on
Commit
•
d2d1b1a
1
Parent(s):
9847c07
v0.0
Browse files- app.py +3 -0
- requirement.txt +1 -1
app.py
CHANGED
@@ -42,6 +42,9 @@ Since Visual ChatGPT is a text language model, Visual ChatGPT must use tools to
|
|
42 |
The thoughts and observations are only visible for Visual ChatGPT, Visual ChatGPT should remember to repeat important information in the final response for Human.
|
43 |
Thought: Do I need to use a tool? {agent_scratchpad}"""
|
44 |
|
|
|
|
|
|
|
45 |
from visual_foundation_models import *
|
46 |
from omegaconf import OmegaConf
|
47 |
from ldm.util import instantiate_from_config
|
|
|
42 |
The thoughts and observations are only visible for Visual ChatGPT, Visual ChatGPT should remember to repeat important information in the final response for Human.
|
43 |
Thought: Do I need to use a tool? {agent_scratchpad}"""
|
44 |
|
45 |
+
from diffusers import StableDiffusionPipeline
|
46 |
+
from diffusers import StableDiffusionInpaintPipeline
|
47 |
+
from diffusers import StableDiffusionInstructPix2PixPipeline, EulerAncestralDiscreteScheduler
|
48 |
from visual_foundation_models import *
|
49 |
from omegaconf import OmegaConf
|
50 |
from ldm.util import instantiate_from_config
|
requirement.txt
CHANGED
@@ -24,7 +24,7 @@ prettytable==3.6.0
|
|
24 |
safetensors==0.2.7
|
25 |
basicsr==1.4.2
|
26 |
langchain==0.0.101
|
27 |
-
diffusers
|
28 |
gradio
|
29 |
openai
|
30 |
accelerate
|
|
|
24 |
safetensors==0.2.7
|
25 |
basicsr==1.4.2
|
26 |
langchain==0.0.101
|
27 |
+
diffusers==0.14.0
|
28 |
gradio
|
29 |
openai
|
30 |
accelerate
|