-
Notifications
You must be signed in to change notification settings - Fork 44.9k
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(platform): Support opening graphs with version and execution id #9332
base: dev
Are you sure you want to change the base?
feat(platform): Support opening graphs with version and execution id #9332
Conversation
…aph-with-version-execution-id
…aph-with-version-execution-id
✅ Deploy Preview for auto-gpt-docs-dev ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for auto-gpt-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
…aph-with-version-execution-id
@@ -233,14 +233,6 @@ export type GraphUpdateable = Omit< | |||
|
|||
export type GraphCreatable = Omit<GraphUpdateable, "id"> & { id?: string }; | |||
|
|||
/* Derived from backend/executor/manager.py:ExecutionManager.add_execution */ | |||
export type GraphExecuteResponse = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not used
Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly. |
Currently it's only possible to open latest graph from monitor and see the node execution results only when manually running. This PR adds ability to open running and finished graphs in builder.
Changes 🏗️
Builder now handles graph version and execution ID in addition to graph ID when opening a graph. When an execution ID is provided, node execution results are fetched and subscribed to in real time. This makes it possible to open a graph that is already executing and see both existing node execution data and real-time updates (if it's still running).
Checklist 📋
For code changes:
Example test plan
For configuration changes:
.env.example
is updated or already compatible with my changesdocker-compose.yml
is updated or already compatible with my changesExamples of configuration changes