joaomorossini commited on
Commit
f37bd20
·
0 Parent(s):

Initial commit

Browse files
Files changed (6) hide show
  1. .env.example +0 -0
  2. .gitignore +4 -0
  3. README.md +18 -0
  4. poetry.lock +0 -0
  5. poetry.toml +2 -0
  6. pyproject.toml +25 -0
.env.example ADDED
File without changes
.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ agency-swarm-main/
2
+ .venv/
3
+ .env
4
+ .cursor
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Overview
2
+
3
+ Private demo for Technical Project Manager job application @ Agency AI (creator of the Agency Swarm framework)
4
+
5
+ # Brainstorm
6
+
7
+ - Use the agency-swarm framework to create a custom demo
8
+ - Give agents the capacity to interact with ClickUp (or Notion)
9
+ - Demonstrate creation of a work breakdown structure from project description
10
+ - Provide openapi specs for tools hosted on my ai_agent_tool_server
11
+ - The agents should know all about Agency AI and VRSEN
12
+ - Agents can send reports and follow ups via e-mail and whatsapp
13
+ - Presentation
14
+ - Video demo
15
+ - Live demo:
16
+ - Deployed version (probably not)
17
+ OR
18
+ - Notebook version
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
poetry.toml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ [virtualenvs]
2
+ create = true
pyproject.toml ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "agency-ai-demo"
3
+ version = "0.1.0"
4
+ description = "Private demo for Technical Project Manager job application @ Agency AI (creator of the Agency Swarm framework)"
5
+ authors = ["João Morossini <[email protected]>"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+ package-mode = false
9
+
10
+ [tool.poetry.dependencies]
11
+ python = "3.11.*"
12
+ agency-swarm = ">=0.4.4,<0.5.0"
13
+ composio-core = "^0.5.28"
14
+ composio-langchain = "^0.5.11"
15
+ langchain = ">=0.2,<0.3"
16
+ langchain-core = ">=0.2.38,<0.3"
17
+ requests = "^2.32.3"
18
+ openai = "^1.64.0"
19
+
20
+ [tool.poetry.group.dev.dependencies]
21
+ ipykernel = "^6.29.5"
22
+
23
+ [build-system]
24
+ requires = ["poetry-core>=2.0.0,<3.0.0"]
25
+ build-backend = "poetry.core.masonry.api"