16 lines
394 B
TOML
16 lines
394 B
TOML
[package]
|
|
name = "kon-llm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Local LLM inference via llama.cpp for Kon"
|
|
|
|
[dependencies]
|
|
kon-core = { path = "../core" }
|
|
llama-cpp-2 = "0.1"
|
|
tokio = { version = "1", features = ["rt", "sync"] }
|
|
reqwest = { version = "0.12", features = ["stream"] }
|
|
futures-util = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
log = "0.4"
|