autoreply 0.3.5

autoreply: Model Context Protocol server for Bluesky profile and post search functionality
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SentencePiece tokenization support (experimental)
//!
//! This module is only available when the `experimental-sentencepiece` feature is enabled.

#![allow(dead_code, unused_imports, unused_variables)]

pub mod proto {
    include!(concat!(env!("OUT_DIR"), "/sentencepiece.rs"));
}

pub mod loader;
pub mod normalizer;
pub mod tokenizer;
pub mod trie;