Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/api/routers/chatbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ async def send_message(

config = ConfigDict(
run_id=run_id,
recursion_limit=32,
configurable={"thread_id": thread_id},
)

Expand Down
1 change: 0 additions & 1 deletion app/api/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

class ConfigDict(TypedDict):
run_id: str
recursion_limit: int
configurable: dict[str, Any]


Expand Down
1 change: 0 additions & 1 deletion tests/app/api/test_streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ def mock_model_uri(self) -> str:
def mock_config(self, mock_thread_id: str) -> ConfigDict:
return {
"run_id": uuid.uuid4(),
"recursion_limit": 10,
"configurable": {"thread_id": mock_thread_id},
}

Expand Down