kchro3
kchro3
Hi folks, just wanted to check in and ask what would be entailed in adding support for older mac versions, such as 13.0?
Hi, awesome work on this project! I'm building some Swift apps using llama.cpp, and I'd love to try getting clip.cpp running on my app too. I'm curious if you're going...
I started seeing this error: ``` 2024/06/29 02:12:51 ValidationException: 1 validation error detected: Value '[]' at 'layers' failed to satisfy constraint: Member must satisfy constraint: [Member must have length less...
My github action is set up as: ``` deploy: runs-on: ubuntu-latest timeout-minutes: 60 steps: - uses: actions/checkout@v4 - name: Build & Deploy Worker uses: cloudflare/[email protected] with: apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}...
There are dependencies like semver & path-to-regexp that need to be updated.
Also open to other ideas, since I'm not that proficient in React. I'm running into situations where I want to update the Agent state from the frontend, so what I've...
I get this error when I pass in the query field in the useAgent. I'm on the latest agents SDK. For whatever it's worth, I'm running my backend locally on...
I have a case where I'd like to handle specific types of updates, so if the state is an object, i want to handle a change to a field. However,...
In general, it would be great to have examples on how to build tests around MCP server tools. I think a common pattern is that you'd have some client around...
I created an MCPAgent with a tool with no args: ``` export class SpecialMCP extends McpAgent { server = new McpServer({ name: "SpecialMCP", version: "0.1.0" }); async init() { this.server.tool(...