Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from gpt_computer_assistant import Agent, start
|
| 2 |
+
|
| 3 |
+
manager = Agent(
|
| 4 |
+
role='Project Manager',
|
| 5 |
+
goal='understands project needs and assist coder',
|
| 6 |
+
backstory="""You're a manager at a large company.""",
|
| 7 |
+
)
|
| 8 |
+
|
| 9 |
+
coder = Agent(
|
| 10 |
+
role='Senior Python Coder',
|
| 11 |
+
goal='writing python scripts and copying to clipboard',
|
| 12 |
+
backstory="""You're a python developer at a large company.""",
|
| 13 |
+
)
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
start()
|