agent-factory: generate agent auto-retrieve-files-from-a-reposito

This commit is contained in:
2026-04-13 20:00:51 +00:00
parent 56916f44cf
commit 940e2a5b80
19 changed files with 569 additions and 0 deletions

0
app/states/__init__.py Normal file
View File

View File

@@ -0,0 +1,17 @@
"""
State definitions for AutoRetrieveFilesFromAReposito agent.
"""
from __future__ import annotations
from typing import Any, Dict, List, Optional
from langgraph.graph import MessagesState
class AutoRetrieveFilesFromARepositoState(MessagesState):
"""Workflow state for AutoRetrieveFilesFromAReposito."""
# ── Input fields ─────────────────────────────────────────────────────
pass
# ── Output fields ────────────────────────────────────────────────────
pass
# ── Internal ─────────────────────────────────────────────────────────
error: Optional[str]
phase: str