pub struct KnowledgeIndexCitation {
pub id: String,
pub index_id: String,
pub document_title: Option<String>,
pub source_uri: String,
pub location: Option<Value>,
pub snippet: String,
pub score: f32,
}Expand description
A single retrieved chunk returned by KnowledgeIndexSearch::search, shaped
to the search_index citation contract in specs/knowledge-indexes.md. The
id (kchk_…) + source_uri + location give the agent a stable, linkable
citation. Kept compatible with the planned search_knowledge citation shape
so the UI can render both uniformly.
Fields§
§id: StringChunk public_id (kchk_…). The stable citation id.
index_id: StringOwning Knowledge Index public_id (kidx_…).
document_title: Option<String>Title of the source document, if known.
source_uri: StringStable per-source locator (e.g. github://owner/repo@main/docs/x.md).
location: Option<Value>Provenance within the document (line / char / page ranges).
snippet: StringA trimmed prefix of the chunk passage.
score: f32Relevance score; higher is more relevant. Use for ordering only.
Trait Implementations§
Source§impl Clone for KnowledgeIndexCitation
impl Clone for KnowledgeIndexCitation
Source§fn clone(&self) -> KnowledgeIndexCitation
fn clone(&self) -> KnowledgeIndexCitation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KnowledgeIndexCitation
impl Debug for KnowledgeIndexCitation
Source§impl<'de> Deserialize<'de> for KnowledgeIndexCitation
impl<'de> Deserialize<'de> for KnowledgeIndexCitation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KnowledgeIndexCitation
impl PartialEq for KnowledgeIndexCitation
Source§impl Serialize for KnowledgeIndexCitation
impl Serialize for KnowledgeIndexCitation
impl StructuralPartialEq for KnowledgeIndexCitation
Auto Trait Implementations§
impl Freeze for KnowledgeIndexCitation
impl RefUnwindSafe for KnowledgeIndexCitation
impl Send for KnowledgeIndexCitation
impl Sync for KnowledgeIndexCitation
impl Unpin for KnowledgeIndexCitation
impl UnsafeUnpin for KnowledgeIndexCitation
impl UnwindSafe for KnowledgeIndexCitation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request