moly_kit/lib.rs
1//! # Description
2//!
3//! Moly Kit is a Rust crate containing widgets and utilities to streamline the development
4//! of artificial intelligence applications for the [Makepad](https://github.com/makepad/makepad)
5//! framework.
6//!
7//! # Features
8//!
9//! - ⚡️ Low-config `Chat` widget that works almost out of the box.
10//! - 🔧 Customize and integrate behavior of `Chat` into your own app.
11//! - 🎨 Customize appearance thanks to Makepad DSL overrides.
12//! - 📞 Built-in OpenAI-compatible client.
13//! - 🧩 Extensible with your own clients and custom message contents.
14//! - 🌎 Web support.
15//!
16//! To learn how to use and integrate Moly Kit into your own Makepad app, read the
17//! [documentation](https://moxin-org.github.io/moly).
18
19pub mod clients;
20pub mod mcp;
21pub mod protocol;
22pub mod utils;
23pub mod widgets;
24
25pub use clients::*;
26pub use mcp::*;
27pub use protocol::*;
28pub use widgets::*;