stream = coze.workflows.runs.stream(
workflow_id=workflow_id,
parameters={...},
workflow_version = "v0.0.18"
)
When I run code like this, the terminal tells me that TypeError: WorkflowsRunsClient.stream() got an unexpected keyword argument 'workflow_version'
But in the official document , it shows that workflow_version can be a parameter, I wonder whether it's a bug or?
stream = coze.workflows.runs.stream(
workflow_id=workflow_id,
parameters={...},
workflow_version = "v0.0.18"
)
When I run code like this, the terminal tells me that TypeError: WorkflowsRunsClient.stream() got an unexpected keyword argument 'workflow_version'
But in the official document , it shows that workflow_version can be a parameter, I wonder whether it's a bug or?