snippy 0.1.0

A command-line tool for that makes using LLMs for code generation a breeze
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod applier;
pub mod block_extractor;
pub mod delimiter_identifier;
pub mod diff_handler;
pub mod errors;
pub mod extractor;
pub mod logger;
pub mod parser;

pub use applier::ContentApplier;
pub use block_extractor::BlockExtractor;
pub use delimiter_identifier::DelimiterIdentifier;
pub use extractor::ContentExtractor;
pub use extractor::MarkdownExtractor;
pub use parser::{BlockType, ParsedBlock};