mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-11 09:44:44 +08:00
12 lines
210 B
Python
12 lines
210 B
Python
|
|
from typing import TypedDict
|
||
|
|
|
||
|
|
from langchain.agents import AgentState
|
||
|
|
|
||
|
|
|
||
|
|
class SandboxState(TypedDict):
|
||
|
|
sandbox_id: str | None = None
|
||
|
|
|
||
|
|
|
||
|
|
class ThreadState(AgentState):
|
||
|
|
sandbox: SandboxState | None = None
|