first push
This commit is contained in:
10
backend/app/agents/qa_agent.py
Normal file
10
backend/app/agents/qa_agent.py
Normal file
@@ -0,0 +1,10 @@
|
||||
async def run_qa_agent(generated_code: dict) -> dict:
|
||||
"""
|
||||
Agent QA minimal :
|
||||
- renvoie un statut de validation simulé
|
||||
"""
|
||||
return {
|
||||
"status": "passed",
|
||||
"logs": [],
|
||||
"checked_files": generated_code.get("tree", []),
|
||||
}
|
||||
Reference in New Issue
Block a user