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 update;
9mod worker;
10
11pub use knowledge::DEFAULT_FILE_QUERY_LIMIT;
12pub use knowledge::map::KnowledgeMapSourceAddRequest;
13pub(crate) use knowledge::map::{KnowledgeMapService, KnowledgeMapServiceError};
14pub use runtime::{
15    AgentRuntimeConfig, FileIndexRootConfig, FileIndexRuntimeConfig, RetrievalRuntimeConfigError,
16    RuntimeConfiguration, RuntimeConfigurationError, WorkerRuntimeConfig,
17};
18pub use service::{AgentDurableAuditInput, RelayKnowledgeService};
19pub use update::{
20    UpdateRuntimeConfig, UpdateRuntimeConfigError, UpdateSource, VersionCheckResponse,
21    update_notice,
22};