Spaces:
Sleeping
Sleeping
| from langgraph.graph import StateGraph, START, END | |
| from src.config.llm import llm_2_0 | |
| from .func import State | |
| class PrimaryChatBot: | |
| def __init__(self): | |
| self.builder = StateGraph(State) | |
| def routing(state: State): | |
| pass | |
| def node(self): | |
| pass | |
| def edge(self): | |
| pass | |