polymathy 0.2.0

Turn search results into answers - a web service that fetches, chunks, and returns semantic content from search queries
Documentation
1
2
3
4
5
6
7
8
9
//! Binary entry point for the Polymathy service.
//!
//! This binary runs the Polymathy web service that processes search queries,
//! retrieves relevant content, and performs semantic chunking and embedding operations.

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    polymathy::run().await
}