-
Notifications
You must be signed in to change notification settings - Fork 0
Workflow builder: SSE streaming, UI overhaul, PREVIOUS_OUTPUT templates, and local config #5
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
fc3a4d2
Update DS submodule and refresh workflow editor icons
matheusgalvao1 7a4b57c
Adopt DS split panel and modal components in web app
matheusgalvao1 03b76f4
Fix editor layout and align header icon styling
matheusgalvao1 c41b0f8
Refactor zoom controls and clean up DS UI styles
matheusgalvao1 b456096
Remove dotenv usage and require exported OpenAI key
matheusgalvao1 2c56ecc
Fail agent runs cleanly and improve error UX
matheusgalvao1 635ed4e
Add run preflight rules and cancel-run UI
matheusgalvao1 d36c34d
Adding run-readiness docs
matheusgalvao1 1cfca46
Falling back to create data folder at runtime if deleted or missing
matheusgalvao1 b608c19
Updating AGENTS.md
matheusgalvao1 0da644b
Onboarding Claude
matheusgalvao1 f3182ff
fix(web): reduce canvas dot contrast in dark mode
matheusgalvao1 16d9c87
fix(web): fix web search button appearance in dark mode
matheusgalvao1 dfd6821
feat(engine): rename last_output to previous_output and add {{PREVIOU…
matheusgalvao1 e85cb1e
feat(server): add /api/run-stream SSE endpoint for progressive streaming
matheusgalvao1 a8d3024
feat(web): progressive chat rendering via SSE, per-agent labels, and …
matheusgalvao1 871b525
docs: update docs for SSE streaming and PREVIOUS_OUTPUT template
matheusgalvao1 bc3db4a
feat: load default workflow from project-root default-workflow.json
matheusgalvao1 9234d8a
feat: load default workflow from project-root default-workflow.json
matheusgalvao1 64e2aef
feat: load models and reasoning efforts from .config/config.json
matheusgalvao1 08820b0
docs: update docs for .config/, new API routes, and PREVIOUS_OUTPUT
matheusgalvao1 be5b765
fix: address PR review issues
matheusgalvao1 69c21f5
fix(server): use res.on('close') instead of req.on('close') in /run-s…
matheusgalvao1 5a36b77
fix(web): revert zoom-stepper border-radius to 50%
matheusgalvao1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| { | ||
| "providers": [ | ||
| { | ||
| "id": "openai", | ||
| "name": "OpenAI", | ||
| "enabled": true, | ||
| "models": [ | ||
| { | ||
| "id": "gpt-5", | ||
| "name": "GPT-5", | ||
| "reasoningEfforts": ["minimal", "low", "medium", "high"] | ||
| }, | ||
| { | ||
| "id": "gpt-5-mini", | ||
| "name": "GPT-5 Mini", | ||
| "reasoningEfforts": ["minimal", "low", "medium", "high"] | ||
| }, | ||
| { | ||
| "id": "gpt-5-nano", | ||
| "name": "GPT-5 Nano", | ||
| "reasoningEfforts": ["minimal", "low", "medium", "high"] | ||
| }, | ||
| { | ||
| "id": "gpt-5.1", | ||
| "name": "GPT-5.1", | ||
| "reasoningEfforts": ["none", "low", "medium", "high"] | ||
| }, | ||
| { | ||
| "id": "gpt-5.2", | ||
| "name": "GPT-5.2", | ||
| "reasoningEfforts": ["none", "low", "medium", "high", "xhigh"] | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.