Skip to main content

relay_knowledge/application/
mod.rs

1//! Application services that orchestrate domain behavior behind stable API types.
2
3mod code_query_source_fallback;
4mod code_query_source_surface;
5mod code_repository_set_identity_coverage;
6mod code_repository_set_lifecycle;
7mod code_repository_set_plan;
8mod code_repository_set_query;
9mod code_repository_set_service;
10mod code_service;
11mod code_service_support;
12mod file_index;
13mod index_refresh;
14mod ingest;
15mod model_provider_config;
16mod multimodal;
17mod operations;
18mod runtime;
19mod service;
20mod service_health;
21mod status;
22mod update;
23mod worker_proposals;
24
25pub use file_index::DEFAULT_FILE_QUERY_LIMIT;
26pub use runtime::{
27    AgentRuntimeConfig, FileIndexRootConfig, FileIndexRuntimeConfig, RetrievalRuntimeConfigError,
28    RuntimeConfiguration, RuntimeConfigurationError, WorkerRuntimeConfig,
29};
30pub use service::{AgentDurableAuditInput, RelayKnowledgeService};
31pub use update::{
32    UpdateRuntimeConfig, UpdateRuntimeConfigError, UpdateSource, VersionCheckResponse,
33    update_notice,
34};