-
Notifications
You must be signed in to change notification settings - Fork 12
feat: tool calling support for Gram Functions #420
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
Conversation
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
🦋 Changeset detectedLatest commit: cf8601a The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for GitHub.
|
daaeb7a
to
4be801d
Compare
bb82dea
to
786c2b7
Compare
disintegrator
added a commit
that referenced
this pull request
Oct 10, 2025
This change moves logic related to custom domains into the customdomains package and a couple of headers to the constants package to prevent the following import cycle in test code: ``` internal/gateway (test) ↓ imports internal/testenv ↓ imports internal/functions ↓ imports internal/assets ↓ imports internal/middleware ↓ imports internal/gateway (customdomains.go:16, logging.go:15) ↓ CYCLE! ``` This cycle is found in #420 and presents a blocker for the `functions` package to depend on the `assets` package.
786c2b7
to
ea282a0
Compare
ea282a0
to
7d7248d
Compare
5470c0b
to
5ffaa75
Compare
5ffaa75
to
d40ce6b
Compare
d40ce6b
to
9ca5f14
Compare
This change allows Gram MCP servers and the playground to proxy tool calls to Gram Functions. It is the second part of the work to implement Gram Functions along with #524.
…ns that you can deploy javascript/typescript code to Gram and expose it as tools in your MCP servers. This code runs in a secure sandbox on fly.io and allows you to run arbitrary that performs all sorts of tasks.
9ca5f14
to
100d3fd
Compare
ryan-timothy-albert
approved these changes
Oct 13, 2025
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This change allows Gram MCP servers and the playground to proxy tool calls to Gram Functions. It is the second part of the work to implement Gram Functions along with #524.