18 lines
933 B
Python
18 lines
933 B
Python
"""
|
|
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
|