| Crates.io | transformers |
| lib.rs | transformers |
| version | 0.0.15 |
| created_at | 2025-03-02 12:18:44.827753+00 |
| updated_at | 2025-12-27 06:33:23.746865+00 |
| description | Looking for HuggingFace Transformers in Rust? Check out candle-pipelines! |
| homepage | |
| repository | https://github.com/ljt019/candle-pipelines |
| max_upload_size | |
| id | 1574542 |
| size | 1,897 |
Looking for HuggingFace Transformers in Rust?
Check out candle-pipelines - simple, intuitive pipelines for local LLM inference in Rust, inspired by Python's Transformers library.
let pipeline = TextGenerationPipelineBuilder::qwen3(Qwen3Size::Size0_6B).build().await?;
let response = pipeline.completion("What is 1+1?").await?;
println!(response) // 2 + 2 = 4
cargo add candle-pipelines