chatty-rs 0.0.1-alpha1

A terminal-based chat client for OpenAI's GPT models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod action;
pub mod backend;
pub mod conversation;
pub mod event;
pub mod message;
pub mod notice;
pub mod storage;
pub mod task;

pub use backend::*;
pub use conversation::{Context, Conversation};
pub use message::Message;
pub use notice::*;

pub use action::*;
pub use event::{ArcEventTx, Event, EventTx};