- Project infrastructure: go.mod, Makefile, .gitignore, README - Configuration system with YAML parsing and env overrides - Structured logging with slog - AI provider interface with Ollama, OpenAI, Anthropic implementations - Provider manager with runtime switching - Agent orchestrator with ReAct loop (reason-act-observe) - Tool registry with JSON Schema descriptions - Terminal tool: shell command execution with safety controls - Filesystem tools: read, write, list with path access control - Conversation memory with session management - Web UI server with WebSocket streaming - Modern dark theme UI with glassmorphism, animations - Frontend: WebSocket client, markdown rendering, tool call display
8 lines
125 B
Modula-2
8 lines
125 B
Modula-2
module git.bebrik.xyz/Dan4ick/ZovOS_AI
|
|
|
|
go 1.22.0
|
|
|
|
require (
|
|
github.com/gorilla/websocket v1.5.3
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|