agent-factory: generate agent auto-deploy-application-to-developm

This commit is contained in:
2026-08-05 01:04:38 +00:00
parent 729c3591a1
commit 1eacad2e34
19 changed files with 586 additions and 0 deletions

View File

View File

@@ -0,0 +1,19 @@
"""
LangGraph workflow for AutoDeployApplicationToDevelopm agent.
"""
from langgraph.graph import StateGraph, END
from app.states.auto_deploy_application_to_developm_state import AutoDeployApplicationToDevelopmState
from app.nodes.core_node import process
def create_auto_deploy_application_to_developm_workflow(llm):
"""Build and compile the AutoDeployApplicationToDevelopm workflow graph."""
graph = StateGraph(AutoDeployApplicationToDevelopmState)
graph.add_node("process", process)
graph.set_entry_point("process")
graph.add_edge("process", END)
return graph.compile()