Skip to main content

synapto_interface/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod cognitive_output_audio;
4pub mod cognitive_output_text;
5pub mod peer_input_audio;
6pub mod peer_input_text;
7pub mod speech_to_text;
8pub mod storage;
9
10/// Instrumented synchronization primitives and re-exports of `tokio::sync`.
11pub mod audio_recorder;
12pub mod call;
13pub mod camera;
14pub mod chat;
15pub mod cognitive;
16pub mod command;
17pub mod context;
18pub mod credentials;
19pub mod data_dir;
20pub mod document;
21pub mod gui;
22pub mod interaction;
23/// Core data types used across the interface and core engine.
24pub mod llm;
25pub mod peer_input;
26pub mod plugin;
27pub mod rollout;
28pub mod secrets;
29pub mod sync;
30pub mod tool;