fix: type errors

Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
-LAN- 2025-09-06 16:09:59 +08:00
parent abb53f11ad
commit 81fdc7c54b
No known key found for this signature in database
GPG Key ID: 6BA0D108DED011FF
3 changed files with 3 additions and 1 deletions

View File

@ -184,6 +184,7 @@ class AdvancedChatAppRunner(WorkflowBasedAppRunner):
),
invoke_from=self.application_generate_entity.invoke_from,
call_depth=self.application_generate_entity.call_depth,
variable_pool=variable_pool,
graph_runtime_state=graph_runtime_state,
command_channel=command_channel,
)

View File

@ -127,6 +127,7 @@ class WorkflowAppRunner(WorkflowBasedAppRunner):
),
invoke_from=self.application_generate_entity.invoke_from,
call_depth=self.application_generate_entity.call_depth,
variable_pool=variable_pool,
graph_runtime_state=graph_runtime_state,
command_channel=command_channel,
)

View File

@ -1,6 +1,6 @@
import json
from datetime import datetime
from typing import TYPE_CHECKING, Any, cast
from typing import TYPE_CHECKING, Optional, cast
from urllib.parse import urlparse
import sqlalchemy as sa