We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd4e0c8 commit aec1a9bCopy full SHA for aec1a9b
1 file changed
src/uipath_langchain/agent/react/utils.py
@@ -77,8 +77,6 @@ def _create_state_model_with_input(
77
78
79
def create_state_with_input(input_schema: type[InputT] | None) -> type[AgentGraphState]:
80
- from uipath_langchain.agent.react.types import AgentGraphState
81
-
82
return _create_state_model_with_input(
83
AgentGraphState, input_schema, model_name="CompleteAgentGraphState"
84
)
@@ -87,8 +85,6 @@ def create_state_with_input(input_schema: type[InputT] | None) -> type[AgentGrap
87
85
def create_guardrails_state_with_input(
88
86
input_schema: type[InputT] | None,
89
) -> type[AgentGuardrailsGraphState]:
90
- from uipath_langchain.agent.react.types import AgentGuardrailsGraphState
91
92
93
AgentGuardrailsGraphState,
94
input_schema,
0 commit comments