Skip to main content

relay_knowledge/application/
mod.rs

1//! Application services that orchestrate domain behavior behind stable API types.
2
3mod code_repository;
4mod knowledge;
5mod model_provider;
6mod runtime;
7mod service;
8mod status;
9mod update;
10mod worker;
11
12pub use knowledge::DEFAULT_FILE_QUERY_LIMIT;
13pub use knowledge::map::KnowledgeMapSourceAddRequest;
14pub(crate) use knowledge::map::{KnowledgeMapService, KnowledgeMapServiceError};
15pub use runtime::{
16    AgentRuntimeConfig, FileIndexRootConfig, FileIndexRuntimeConfig, RetrievalRuntimeConfigError,
17    RuntimeConfiguration, RuntimeConfigurationError, WorkerRuntimeConfig,
18};
19pub use service::{AgentDurableAuditInput, RelayKnowledgeService};
20pub use update::{
21    UpdateRuntimeConfig, UpdateRuntimeConfigError, UpdateSource, VersionCheckResponse,
22    update_notice,
23};