Adds consent management for tool execution, input validation, sandboxed process execution, and MCP server integration. Updates session management to support tool use, conversation persistence, and streaming responses. Major additions: - Database migrations for conversations and secure storage - Encryption and credential management infrastructure - Extensible tool system with code execution and web search - Consent management and validation systems - Sandboxed process execution - MCP server integration Infrastructure changes: - Module registration and workspace dependencies - ToolCall type and tool-related Message methods - Privacy, security, and tool configuration structures - Database-backed conversation persistence - Tool call tracking in conversations Provider and UI updates: - Ollama provider updates for tool support and new Role types - TUI chat and code app updates for async initialization - CLI updates for new SessionController API - Configuration documentation updates - CHANGELOG updates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "owlen-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "Core traits and types for OWLEN LLM client"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
log = "0.4.20"
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
serde_json = "1.0.105"
|
|
thiserror = "1.0.48"
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
unicode-segmentation = "1.11"
|
|
unicode-width = "0.1"
|
|
uuid = { version = "1.4.1", features = ["v4", "serde"] }
|
|
textwrap = "0.16.0"
|
|
futures = "0.3.28"
|
|
async-trait = "0.1.73"
|
|
toml = "0.8.0"
|
|
shellexpand = "3.1.0"
|
|
dirs = "5.0"
|
|
ratatui = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
jsonschema = { workspace = true }
|
|
which = { workspace = true }
|
|
nix = { workspace = true }
|
|
aes-gcm = { workspace = true }
|
|
ring = { workspace = true }
|
|
keyring = { workspace = true }
|
|
chrono = { workspace = true }
|
|
urlencoding = { workspace = true }
|
|
rpassword = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
duckduckgo = "0.2.0"
|
|
reqwest = { workspace = true, features = ["default"] }
|
|
reqwest_011 = { version = "0.11", package = "reqwest" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|