khulnasoft commited on
Commit
b175260
·
verified ·
1 Parent(s): e73cb76

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -0
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()