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 data_dir;
19pub mod document;
20pub mod gui;
21pub mod interaction;
22/// Core data types used across the interface and core engine.
23pub mod llm;
24pub mod peer_input;
25pub mod plugin;
26pub mod rollout;
27pub mod secrets;
28pub mod sync;
29pub mod tool;