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