asimov_prompt/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! ```rust
4//! # use asimov_prompt::*;
5//! ```
6
7#![no_std]
8
9mod prompt;
10pub use prompt::*;
11
12mod prompt_message;
13pub use prompt_message::*;
14
15mod prompt_role;
16pub use prompt_role::*;