subashpoudel's picture
Implemented the analytics too in orchestrator
8ce97f0
raw
history blame contribute delete
305 Bytes
from pydantic import BaseModel, ConfigDict , Field
from typing import Annotated , TypedDict
from langgraph.graph.message import add_messages
class State(TypedDict):
messages: Annotated[list, add_messages]
endpoint: str
method: str
parameters: dict
response:dict
error_message:str