first push
This commit is contained in:
15
backend/app/agents/pm_agent.py
Normal file
15
backend/app/agents/pm_agent.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from app.schemas.spec import ProjectSpec
|
||||
|
||||
|
||||
async def run_pm_agent(user_input: str) -> ProjectSpec:
|
||||
"""
|
||||
Agent PM minimal :
|
||||
- transforme l'entrée utilisateur en cahier des charges structuré
|
||||
"""
|
||||
return ProjectSpec(
|
||||
title="Projet généré depuis demande utilisateur",
|
||||
description=user_input,
|
||||
requirements=["MVP minimal", "Architecture modulaire"],
|
||||
constraints=["Python", "LangGraph", "Pydantic"],
|
||||
target_stack="Python",
|
||||
)
|
||||
Reference in New Issue
Block a user