Spaces:
Configuration error
Configuration error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from langchain.agents import initialize_agent
|
2 |
+
from langchain.llms import OpenAI
|
3 |
+
from gradio_tools.tools import (
|
4 |
+
StableDiffusionTool,
|
5 |
+
ImageCaptioningTool,
|
6 |
+
StableDiffusionPromptGeneratorTool,
|
7 |
+
TextToVideoTool,
|
8 |
+
)
|
9 |
+
|
10 |
+
from langchain.memory import ConversationBufferMemory
|
11 |
+
|
12 |
+
llm = OpenAI(temperature=0)
|
13 |
+
memory = ConversationBufferMemory(memory_key="chat_history")
|
14 |
+
tools = [
|
15 |
+
StableDiffusionTool().langchain,
|
16 |
+
ImageCaptioningTool().langchain,
|
17 |
+
StableDiffusionPromptGeneratorTool().langchain,
|
18 |
+
TextToVideoTool().langchain,
|
19 |
+
]
|
20 |
+
|
21 |
+
|
22 |
+
agent = initialize_agent(
|
23 |
+
tools, llm, memory=memory, agent="conversational-react-description", verbose=True
|
24 |
+
)
|
25 |
+
output = agent.run(
|
26 |
+
input=(
|
27 |
+
"Please create a photo of a dog riding a skateboard "
|
28 |
+
"but improve my prompt prior to using an image generator."
|
29 |
+
"Please caption the generated image and create a video for it using the improved prompt."
|
30 |
+
)
|
31 |
+
)
|