agent-factory: generate agent auto-parse-email-content-and-extrac
This commit is contained in:
17
app/states/auto_parse_email_content_and_extrac_state.py
Normal file
17
app/states/auto_parse_email_content_and_extrac_state.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
State definitions for AutoParseEmailContentAndExtrac agent.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
from typing import Any, Dict, List, Optional
|
||||
from langgraph.graph import MessagesState
|
||||
|
||||
|
||||
class AutoParseEmailContentAndExtracState(MessagesState):
|
||||
"""Workflow state for AutoParseEmailContentAndExtrac."""
|
||||
# ── Input fields ─────────────────────────────────────────────────────
|
||||
pass
|
||||
# ── Output fields ────────────────────────────────────────────────────
|
||||
pass
|
||||
# ── Internal ─────────────────────────────────────────────────────────
|
||||
error: Optional[str]
|
||||
phase: str
|
||||
Reference in New Issue
Block a user