tedison
tedison
Closes #12
# Relates to: # Risks # Background ## What does this PR do? ## What kind of change is this? # Documentation changes needed? # Testing ## Where should a...
Instead of getting all recent messages to generate the state, a similarity should be done on the vectors. This way we only get relevant messages in the current state
anthropic currently sends back a vec on `Content` structs. Before the fix we were matching on the first element of that. The first element of a ToolUse is rarely ever...
Merges https://github.com/0xPlaygrounds/rig/pull/213 and https://github.com/0xPlaygrounds/rig/pull/318 together. Refactored #318 to have a wrapper for the API
- [x] I have looked for existing issues (including closed) about this ## Feature Request Add support for the realtime WebRTC and Websocket connection to the realtime API ### Motivation...
Allows developers to use mcp tools and servers with rig. Example usage: ``` use mcp_client_rs::client::ClientBuilder; let fetch_client = ClientBuilder::new("uvx") .arg("mcp-server-fetch") .spawn_and_initialize() .await?; let fetch_tools = fetch_client.list_tools().await?.tools; let fetch_client = Arc::new(fetch_client);...