-
Notifications
You must be signed in to change notification settings - Fork 0
Tool use and MCP fixes #21
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
25 commits
Select commit
Hold shift + click to select a range
ef01878
Update markdown streaming
ScriptSmith cc400fe
Remove unused system prompt
ScriptSmith 8454257
Add openrouter category
ScriptSmith 886ae3c
Unregister service workers when not enabled
ScriptSmith 383fe34
Status indicator fixes
ScriptSmith 6b8b784
Remove 2MB json limit
ScriptSmith fd2fe2b
Incude assistant responses in subsequent rounds
ScriptSmith 8733dd0
Limit exa response sizes
ScriptSmith 46794bd
Improve wizard
ScriptSmith 66fbf13
Review changes
ScriptSmith da7f6c6
Handle single rounds and regeneration better
ScriptSmith bfd8b24
Use stream field helper
ScriptSmith c601776
Customise the number of rounds
ScriptSmith 1164c54
Fix single-round rendering with small models
ScriptSmith 6d5c700
Nicer toolsbar
ScriptSmith dfe2f73
Allow MCP servers in CSP
ScriptSmith ffd3118
Update default config to allow connecting to local providers (eg. oll…
ScriptSmith b8bc927
MCP artifacts
ScriptSmith e71c4c7
Fix MCP client connection stability and improve config modal UX
ScriptSmith 72cde53
Simple MCP auth
ScriptSmith bf8c21f
Add truncate to tavily
ScriptSmith d8fc920
Upgrade testcontainers
ScriptSmith 3792fc6
Review fixes
ScriptSmith 72dd93a
Fix storbook errors
ScriptSmith 7ffb45b
Enable server when added
ScriptSmith 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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
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
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
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.
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.
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.
http:scheme allows arbitrary insecure connectionsThe new
connect-src 'self' https: http: wss: ws:is much broader than the previous explicit allowlist. Including barehttp:means the browser UI may send authenticated requests (with bearer tokens or cookies) to any plaintext HTTP endpoint, which is exploitable by a network-level attacker. The comment explains the motivation (user-configured MCP servers at arbitrary URLs), but it's worth considering a narrower alternative: keephttps:/wss:for all remote endpoints and addhttp://localhost http://127.0.0.1(or the loopback CIDR if supported) for local-only MCP servers. This would still serve the Ollama / local-MCP use case without opening the fullhttp:scheme to the whole internet.Prompt To Fix With AI