18 lines
939 B
Python
18 lines
939 B
Python
"""
|
|
State definitions for AutoRetrieveapplicationdefinitio agent.
|
|
"""
|
|
from __future__ import annotations
|
|
from typing import Any, Dict, List, Optional
|
|
from langgraph.graph import MessagesState
|
|
|
|
|
|
class AutoRetrieveapplicationdefinitioState(MessagesState):
|
|
"""Workflow state for AutoRetrieveapplicationdefinitio."""
|
|
# ── Input fields ─────────────────────────────────────────────────────
|
|
pass
|
|
# ── Output fields ────────────────────────────────────────────────────
|
|
pass
|
|
# ── Internal ─────────────────────────────────────────────────────────
|
|
error: Optional[str]
|
|
phase: str
|