-
Notifications
You must be signed in to change notification settings - Fork 42
Changed outputs to list #131
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,9 +1,9 @@ | ||||||
| from pydantic import BaseModel, Field | ||||||
| from typing import Any | ||||||
| from typing import Any, List | ||||||
| from .state_status_enum import StateStatusEnum | ||||||
|
|
||||||
| class ExecutedRequestModel(BaseModel): | ||||||
| outputs: dict[str, Any] = Field(..., description="Outputs of the state") | ||||||
| outputs: List[dict[str, Any]] = Field(..., description="Outputs of the state") | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Breaking change: Consider versioning and documentation updates. The type change from
- outputs: List[dict[str, Any]] = Field(..., description="Outputs of the state")
+ outputs: List[dict[str, Any]] = Field(..., description="List of output dictionaries from the state execution")📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not needed as we are in beta
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @NiveditJain, understood! You're absolutely right - breaking changes are expected and acceptable during beta phase. API stability guarantees don't typically apply until a stable release. Thanks for clarifying the project's current development stage. ✏️ Learnings added
|
||||||
|
|
||||||
|
|
||||||
| class ExecutedResponseModel(BaseModel): | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.