We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08f464c commit 743a746Copy full SHA for 743a746
1 file changed
src/api/entities_api/orchestration/mixins/delegation_mixin.py
@@ -21,10 +21,9 @@ class DelegationMixin:
21
22
def __init__(self, *args, **kwargs):
23
super().__init__(*args, **kwargs)
24
-
25
self._delegation_api_key = None
+
26
self._delete_ephemeral_thread = False
27
- self._delegation_model = None
28
29
# --- NEW HELPER METHOD ---
30
async def _ephemeral_clean_up(
@@ -307,8 +306,7 @@ def background_stream_worker():
307
306
# NOTE: Ensure this model string is exactly correct and available to your key
308
iterator = sync_stream.stream_events(
309
provider="together-ai",
310
- model=self._delegation_model,
311
- # model="together-ai/Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8",
+ model="together-ai/Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8",
312
)
313
314
count = 0
0 commit comments