Sebas Tin angelegt und Synology Chat connected

This commit is contained in:
Sithies
2026-03-16 21:13:48 +01:00
parent 204b2d6eb1
commit df29fdfa60
21 changed files with 2302 additions and 0 deletions
+8
View File
@@ -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"] }
+12
View File
@@ -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;