Spaces:
Build error
Build error
hack installation
Browse files
app.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import base64
|
2 |
import openai
|
3 |
import itertools
|
@@ -12,6 +14,7 @@ from agentverse.simulation import Simulation
|
|
12 |
from agentverse.message import Message
|
13 |
|
14 |
|
|
|
15 |
def cover_img(background, img, place: Tuple[int, int]):
|
16 |
"""
|
17 |
Overlays the specified image to the specified position of the background image.
|
|
|
1 |
+
import os
|
2 |
+
os.system("pip install -r requirements.txt")
|
3 |
import base64
|
4 |
import openai
|
5 |
import itertools
|
|
|
14 |
from agentverse.message import Message
|
15 |
|
16 |
|
17 |
+
|
18 |
def cover_img(background, img, place: Tuple[int, int]):
|
19 |
"""
|
20 |
Overlays the specified image to the specified position of the background image.
|