Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add missed app_id for workflow #180

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix stream call
wildfeds committed Jan 27, 2025
commit 40771712083542c00ec2a4e1dd611c85ebf5bf66
2 changes: 2 additions & 0 deletions cozepy/workflows/runs/__init__.py
Original file line number Diff line number Diff line change
@@ -199,6 +199,7 @@ def stream(
workflow_id: str,
parameters: Optional[Dict[str, Any]] = None,
bot_id: Optional[str] = None,
app_id: Optional[str] = None,
ext: Optional[Dict[str, Any]] = None,
) -> Stream[WorkflowEvent]:
"""
@@ -219,6 +220,7 @@ def stream(
body = {
"workflow_id": workflow_id,
"parameters": parameters,
"app_id": app_id,
"bot_id": bot_id,
"ext": ext,
}