- Fix ACTION_INPUT regex to properly capture multiline JSON responses - Changed from stopping at first newline to capturing all remaining text - Resolves parsing errors when LLM generates formatted JSON with line breaks - Enhance tool schemas with detailed descriptions and parameter specifications - Add comprehensive Message schema for generate_text tool - Clarify distinction between resources/get (file read) and resources/list (directory listing) - Include clear usage guidance in tool descriptions - Set default model to llama3.2:latest instead of invalid "ollama" - Add parse error debugging to help troubleshoot LLM response issues The agent infrastructure now correctly handles multiline tool arguments and provides better guidance to LLMs through improved tool schemas. Remaining errors are due to LLM quality (model making poor tool choices or generating malformed responses), not infrastructure bugs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
270 B
TOML
13 lines
270 B
TOML
[package]
|
|
name = "owlen-mcp-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Dedicated MCP client library for Owlen, exposing remote MCP server communication"
|
|
license = "AGPL-3.0"
|
|
|
|
[dependencies]
|
|
owlen-core = { path = "../owlen-core" }
|
|
|
|
[features]
|
|
default = []
|