Matthew Peveler

Results 298 comments of Matthew Peveler

We're running into a similar issue using `agent.run` in general. I was able to make a small reproducible case with this: ```python # mcp_server.py from mcp.server.fastmcp import FastMCP mcp =...

Our working solution was something like this: ```python agent = Agent( model=TestModel(call_tools=['echo_num']), ) def get_server(): return MCPServerStdio('python', args=['mcp_server.py']) async def run_agent(): async with agent: result = await agent.run('Call echo_num with...

There's also [`tmpfiles.d`](https://manpages.ubuntu.com/manpages/jammy/man5/tmpfiles.d.5.html) which is a builtin way to do this I believe, where by default there's `/usr/lib/tmpfiles.d/tmp.conf` which is defined as: ``` D /tmp 1777 root root - ```...

I've pinned the version of `@types/node` in #84 which seems to have resolved the lint issue on CI, which I'm guessing was from it pulling in a very new version...

Yeah, we never removed the functionality so it still works, but I plan to, but it'd be good to update the docs first to give people more lead time to...

Still something that needs updating in the docs, just haven't gotten to it yet unfortunately.

This is an example migration that triggers an error for sqlite: ```php

The idea on forbidding CTEs was that you can stick an insert/update/delete into the CTE query, and parsing that becomes increasingly more difficult without writing a full parser. Really, a...

Thanks for the link to the docs to the API. I share John's desire to be able to connect to the query API directly within a SQL client as that'd...

My only potential concern would be on client support for Arrow Flight SQL as I've not heard it. I do use duckdb some, and I think that the [airport](https://duckdb.org/community_extensions/extensions/airport.html) extension...