- Fix media type detection using magic bytes instead of file extension - Correctly identifies JPEG files with .png extension (and vice versa) - Supports PNG, JPEG, GIF, and WebP formats - Add multi-image support with file_paths array parameter - Load multiple images in a single tool call - All images queued for LLM analysis - Enhanced CLI output: - Inline image preview via iTerm2 imgcat protocol (height=5) - Dimmed info line showing: path | dimensions | media type | file size - Proper │ prefix alignment with tool output boxing - Human-readable file sizes (bytes, KB, MB) - Add image dimension extraction from file headers - PNG, JPEG, GIF, WebP dimension parsing - Add comprehensive tests for magic byte detection and dimensions
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[package]
|
|
name = "g3-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Core engine for G3 AI coding agent"
|
|
|
|
[dependencies]
|
|
g3-providers = { path = "../g3-providers" }
|
|
g3-config = { path = "../g3-config" }
|
|
g3-execution = { path = "../g3-execution" }
|
|
g3-computer-control = { path = "../g3-computer-control" }
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true }
|
|
async-trait = "0.1"
|
|
tokio-stream = "0.1"
|
|
tokio-util = "0.7"
|
|
futures-util = "0.3"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rand = "0.8"
|
|
regex = "1.0"
|
|
shellexpand = "3.1"
|
|
serde_yaml = "0.9"
|
|
|
|
# tree-sitter for embedded code search
|
|
tree-sitter = "0.24"
|
|
tree-sitter-rust = "0.23"
|
|
tree-sitter-python = "0.23"
|
|
tree-sitter-javascript = "0.23"
|
|
tree-sitter-typescript = "0.23"
|
|
tree-sitter-go = "0.23"
|
|
tree-sitter-java = "0.23"
|
|
tree-sitter-c = "0.23"
|
|
tree-sitter-cpp = "0.23"
|
|
# tree-sitter-kotlin = "0.3" # Temporarily disabled - incompatible with tree-sitter 0.24
|
|
tree-sitter-haskell = { git = "https://github.com/tree-sitter/tree-sitter-haskell" }
|
|
tree-sitter-scheme = "0.24"
|
|
streaming-iterator = "0.1"
|
|
walkdir = "2.4"
|
|
|
|
const_format = "0.2"
|
|
base64 = "0.22.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.8"
|
|
serial_test = "3.0"
|