rssto/crates/llm
2026-01-09 22:35:06 +02:00
..
src separate Pollable and Transactional features, separate table members, use single-connection transactions method in the crawler and llm crates, minor crawler optimizations such as disconnect from db server on each queue iteration complete 2026-01-09 22:35:06 +02:00
Cargo.toml separate Pollable and Transactional features, separate table members, use single-connection transactions method in the crawler and llm crates, minor crawler optimizations such as disconnect from db server on each queue iteration complete 2026-01-09 22:35:06 +02:00
LICENSE implement initial llm features 2026-01-08 14:05:16 +02:00
README.md remove extra quote 2026-01-08 14:15:32 +02:00

rssto-llm

LLM daemon for the rssto DB translations

Note

In development!

  1. Setup rssto-crawler first and collect initial data

  2. Run LLM server:

llama-server -hf ggml-org/gemma-3-1b-it-GGUF
  1. Launch rssto-llm to handle content DB:
cd rssto/crates/rssto-llm
cargo run -- --mysql-username {USER} \
             --mysql-password {PASS} \
             --mysql-database {NAME} \
             --llm-host {HOST}       \
             --llm-port {PORT}       \
             --llm-model {MODEL}     \
             --llm-message {MESSAGE}
  • see --help to display all supported options