Sebas Tin angelegt und Synology Chat connected
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
[package]
|
||||
name = "api"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
# Unser shared Foundation-Crate
|
||||
nazarick-core = { path = "../nazarick-core" }
|
||||
|
||||
# Async Runtime — brauchen wir für HTTP-Requests zu LLM APIs
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
|
||||
# HTTP Client für API-Aufrufe (Mistral, Ollama, LmStudio)
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
|
||||
# JSON Serialisierung/Deserialisierung für API Request/Response
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
async-trait = "0.1.89"
|
||||
@@ -0,0 +1,4 @@
|
||||
/// Das api-Crate ist die zentrale Kommunikationsschicht des Nazarick-Systems.
|
||||
/// Es abstrahiert alle externen APIs (LLM, Bild, Kanäle) hinter Traits,
|
||||
/// sodass Agenten nie direkt mit einem spezifischen Backend gekoppelt sind.
|
||||
pub mod llm;
|
||||
@@ -0,0 +1,7 @@
|
||||
[package]
|
||||
name = "memory"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
nazarick-core = { path = "../nazarick-core" }
|
||||
@@ -0,0 +1 @@
|
||||
// Nazarick - 3-layer memory system for context management
|
||||
@@ -0,0 +1,8 @@
|
||||
[package]
|
||||
name = "nazarick-core"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "2.0.18"
|
||||
uuid = { version = "1.22.0", features = ["v4"] }
|
||||
@@ -0,0 +1,12 @@
|
||||
pub mod error;
|
||||
pub mod types;
|
||||
pub mod traits;
|
||||
pub mod permissions;
|
||||
pub mod usage;
|
||||
/// Implementiert den Agent-Trait aus nazarick-core und nutzt
|
||||
/// den api-Crate für LLM-Kommunikation.
|
||||
///
|
||||
/// Persönlichkeit basiert auf zwei Dateien:
|
||||
/// - soul_core.md → unveränderlicher Kern (Regeln, Sicherheit)
|
||||
/// - soul_personality.md → entwickelbarer Teil (Ton, Präferenzen)
|
||||
pub mod prompt;
|
||||
@@ -0,0 +1,17 @@
|
||||
[package]
|
||||
name = "sebas-tian"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
# Shared Foundation
|
||||
nazarick-core = { path = "../nazarick-core" }
|
||||
|
||||
# LLM Kommunikation
|
||||
api = { path = "../api" }
|
||||
|
||||
# Async Runtime
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
|
||||
# Fehlerbehandlung
|
||||
thiserror = "2"
|
||||
@@ -0,0 +1,7 @@
|
||||
[package]
|
||||
name = "skills"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
nazarick-core = { path = "../nazarick-core" }
|
||||
@@ -0,0 +1 @@
|
||||
// Nazarick - Explicit sub-skills without generic shell access
|
||||
Reference in New Issue
Block a user