File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ def __init__(
5757 self .verbose = kwargs .get ("verbose" , settings .VERBOSE )
5858 self .tools : list [BaseTool ] = self ._tools (additional_tools )
5959 self .llm : BaseLanguageModel = llm or self ._choose_llm (** kwargs )
60- self .agent_executor : AgentExecutor | None = None
60+ self .agent_executor : Optional [ AgentExecutor ] = None
6161 self .input_files : list [File ] = []
6262 self .output_files : list [File ] = []
6363 self .code_log : list [tuple [str , str ]] = []
@@ -69,7 +69,7 @@ def from_id(cls, session_id: UUID) -> "CodeInterpreterSession":
6969 return session
7070
7171 @property
72- def session_id (self ) -> UUID | None :
72+ def session_id (self ) -> Optional [ UUID ] :
7373 return self .codebox .session_id
7474
7575 def start (self ) -> SessionStatus :
You can’t perform that action at this time.
0 commit comments