From 11e87286854c77e32c5ab37d4bcaa89b00c2d61c Mon Sep 17 00:00:00 2001 From: Rafael Viana Date: Thu, 29 Aug 2024 17:49:04 -0300 Subject: [PATCH] [docs]: fix parameter misspelled --- docs/docs/cloud/how-tos/interrupt_concurrent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/cloud/how-tos/interrupt_concurrent.md b/docs/docs/cloud/how-tos/interrupt_concurrent.md index d58df875b..e67fb4ce5 100644 --- a/docs/docs/cloud/how-tos/interrupt_concurrent.md +++ b/docs/docs/cloud/how-tos/interrupt_concurrent.md @@ -60,7 +60,7 @@ Now we can start our two runs and join the second on euntil it has completed: thread["thread_id"], assistant_id, input={"messages": [{"role": "human", "content": "what's the weather in nyc?"}]}, - multitask_strategychrom="interrupt", + multitask_strategy="interrupt", ) # wait until the second run completes await client.runs.join(thread["thread_id"], run["run_id"])