v0.1.0 skel
This commit is contained in:
18
sca-ia/Cargo.toml
Normal file
18
sca-ia/Cargo.toml
Normal file
@@ -0,0 +1,18 @@
|
||||
# file: sca-ia/Cargo.toml
|
||||
|
||||
[package]
|
||||
name = "sca-ia"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
publish.workspace = true
|
||||
|
||||
[dependencies]
|
||||
sca-core = { path = "../sca-core" }
|
||||
tokio.workspace = true
|
||||
tracing.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
reqwest.workspace = true
|
||||
regex.workspace = true
|
||||
2
sca-ia/src/context.rs
Normal file
2
sca-ia/src/context.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
// file: sca-ia/src/context.rs
|
||||
|
||||
2
sca-ia/src/embeddings.rs
Normal file
2
sca-ia/src/embeddings.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
// file: sca-ia/src/embeddings.rs
|
||||
|
||||
2
sca-ia/src/kb.rs
Normal file
2
sca-ia/src/kb.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
// file: sca-ia/src/kb.rs
|
||||
|
||||
15
sca-ia/src/lib.rs
Normal file
15
sca-ia/src/lib.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
// file: sca-ia/src/lib.rs
|
||||
|
||||
//! Sase Coding Agent - AI
|
||||
|
||||
#![deny(unreachable_pub)]
|
||||
#![warn(missing_docs)]
|
||||
// #![deny(missing_docs)]
|
||||
|
||||
mod context;
|
||||
mod embeddings;
|
||||
mod kb;
|
||||
mod ollama;
|
||||
mod provider;
|
||||
mod routing;
|
||||
mod thinking;
|
||||
2
sca-ia/src/ollama.rs
Normal file
2
sca-ia/src/ollama.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
// file: sca-ia/src/ollama.rs
|
||||
|
||||
2
sca-ia/src/provider.rs
Normal file
2
sca-ia/src/provider.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
// file: sca-ia/src/provider.rs
|
||||
|
||||
2
sca-ia/src/routing.rs
Normal file
2
sca-ia/src/routing.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
// file: sca-ia/src/routing.rs
|
||||
|
||||
2
sca-ia/src/thinking.rs
Normal file
2
sca-ia/src/thinking.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
// file: sca-ia/src/thinking.rs
|
||||
|
||||
Reference in New Issue
Block a user