ruchat 0.2.0

ollama/chroma command-line AI chat tool
Documentation
1
2
3
4
5
6
pub(crate) mod ollama;
use crate::Result;

trait LlmProvider {
    async fn generate(&self) -> Result<String>;
}