Update services/chat_service.py
Browse files- services/chat_service.py +1 -1
services/chat_service.py
CHANGED
@@ -170,7 +170,7 @@ class ChatService:
|
|
170 |
self,
|
171 |
user_input: str,
|
172 |
session_id: Any,
|
173 |
-
max_length: int =
|
174 |
) -> Tuple[str, List[Tuple[str, str]], Dict[str, List[Dict[str, Any]]]]:
|
175 |
"""Main chat method that coordinates the entire conversation flow."""
|
176 |
try:
|
|
|
170 |
self,
|
171 |
user_input: str,
|
172 |
session_id: Any,
|
173 |
+
max_length: int = 8000
|
174 |
) -> Tuple[str, List[Tuple[str, str]], Dict[str, List[Dict[str, Any]]]]:
|
175 |
"""Main chat method that coordinates the entire conversation flow."""
|
176 |
try:
|