bandly
Results
1
issues of
bandly
DB_URI = "mysql://root:123456@localhost:3306/langgraph?charset=utf8mb4" with PyMySQLSaver.from_conn_string(DB_URI) as checkpointer: config = {"configurable": {"thread_id": 2}} checkpointer.setup() graph = workflow.compile(checkpointer=checkpointer) state = {"input": "主动向用户提问,获取用户病情的,主要症状、持续时间、症状具体描述、检查和用药情况及治疗"} for event in graph.stream(state, config=config, stream_mode="values"): for value in event.values():...