CalleCaje commited on
Commit
ba3dfc3
·
1 Parent(s): 6a8cb0c

enhance README documentation

Browse files
Files changed (2) hide show
  1. README.md +6 -0
  2. mcpc_graph.py +1 -1
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  ---
2
  title: PMCP AgenticProjectManager
3
  emoji: ⚡
@@ -14,4 +18,6 @@ tags:
14
  - agent-demo-track
15
  ---
16
 
 
 
17
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+ # PMCP - Agentic Project Manager
2
+
3
+ PMCP is an agent that uses MCP to manage a software project. It can interact with GitHub and Trello to create, update and delete issues, cards, comments and so on.
4
+
5
  ---
6
  title: PMCP AgenticProjectManager
7
  emoji: ⚡
 
18
  - agent-demo-track
19
  ---
20
 
21
+ **See the demo video here:** [PMCP Demo Video](https://www.youtube.com/channel/UCrh_kPIFBEPeJeHn3bdZ7aA)
22
+
23
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
mcpc_graph.py CHANGED
@@ -51,7 +51,7 @@ async def setup_graph(github_token: str, trello_api:str, trello_token:str):
51
  tool_node = ToolNode(github_tools + trello_tools)
52
 
53
  llm = ChatOpenAI(
54
- model="Qwen/Qwen3-32B",
55
  temperature=0.0,
56
  api_key=os.getenv("NEBIUS_API_KEY"),
57
  base_url="https://api.studio.nebius.com/v1/",
 
51
  tool_node = ToolNode(github_tools + trello_tools)
52
 
53
  llm = ChatOpenAI(
54
+ model="Qwen/Qwen2.5-32B-Instruct",
55
  temperature=0.0,
56
  api_key=os.getenv("NEBIUS_API_KEY"),
57
  base_url="https://api.studio.nebius.com/v1/",