We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 329dd23 commit acff1b1Copy full SHA for acff1b1
taskingai/assistant/assistant.py
@@ -348,7 +348,7 @@ async def a_delete_assistant(assistant_id: str) -> None:
348
await async_api_delete_assistant(assistant_id=assistant_id)
349
350
351
-def clean_chat_context(assistant_id: str, chat_id: str) -> None:
+def clean_chat_context(assistant_id: str, chat_id: str) -> ChatCleanContextResponse:
352
"""
353
Clean chat context.
354
@@ -359,7 +359,7 @@ def clean_chat_context(assistant_id: str, chat_id: str) -> None:
359
api_clean_chat_context(assistant_id=assistant_id, chat_id=chat_id)
360
361
362
-async def a_clean_chat_context(assistant_id: str, chat_id: str) -> None:
+async def a_clean_chat_context(assistant_id: str, chat_id: str) -> ChatCleanContextResponse:
363
364
Clean chat context in async mode.
365
0 commit comments