mirror of
https://github.com/openai/codex.git
synced 2026-05-05 05:42:33 +03:00
## Summary - add the new `core/src/memories` module (phase-one parsing, rollout filtering, storage, selection, prompts) - add Askama-backed memory templates for stage-one input/system and consolidation prompts - add module tests for parsing, filtering, path bucketing, and summary maintenance ## Testing - just fmt - cargo test -p codex-core --lib memories::
107 lines
3.0 KiB
Rust
107 lines
3.0 KiB
Rust
use crate::auth::AuthProvider;
|
|
use crate::common::MemorySummarizeInput;
|
|
use crate::common::MemorySummarizeOutput;
|
|
use crate::endpoint::session::EndpointSession;
|
|
use crate::error::ApiError;
|
|
use crate::provider::Provider;
|
|
use codex_client::HttpTransport;
|
|
use codex_client::RequestTelemetry;
|
|
use http::HeaderMap;
|
|
use http::Method;
|
|
use serde::Deserialize;
|
|
use serde_json::to_value;
|
|
use std::sync::Arc;
|
|
|
|
pub struct MemoriesClient<T: HttpTransport, A: AuthProvider> {
|
|
session: EndpointSession<T, A>,
|
|
}
|
|
|
|
impl<T: HttpTransport, A: AuthProvider> MemoriesClient<T, A> {
|
|
pub fn new(transport: T, provider: Provider, auth: A) -> Self {
|
|
Self {
|
|
session: EndpointSession::new(transport, provider, auth),
|
|
}
|
|
}
|
|
|
|
pub fn with_telemetry(self, request: Option<Arc<dyn RequestTelemetry>>) -> Self {
|
|
Self {
|
|
session: self.session.with_request_telemetry(request),
|
|
}
|
|
}
|
|
|
|
fn path() -> &'static str {
|
|
"memories/trace_summarize"
|
|
}
|
|
|
|
pub async fn summarize(
|
|
&self,
|
|
body: serde_json::Value,
|
|
extra_headers: HeaderMap,
|
|
) -> Result<Vec<MemorySummarizeOutput>, ApiError> {
|
|
let resp = self
|
|
.session
|
|
.execute(Method::POST, Self::path(), extra_headers, Some(body))
|
|
.await?;
|
|
let parsed: SummarizeResponse =
|
|
serde_json::from_slice(&resp.body).map_err(|e| ApiError::Stream(e.to_string()))?;
|
|
Ok(parsed.output)
|
|
}
|
|
|
|
pub async fn summarize_input(
|
|
&self,
|
|
input: &MemorySummarizeInput,
|
|
extra_headers: HeaderMap,
|
|
) -> Result<Vec<MemorySummarizeOutput>, ApiError> {
|
|
let body = to_value(input).map_err(|e| {
|
|
ApiError::Stream(format!("failed to encode memory summarize input: {e}"))
|
|
})?;
|
|
self.summarize(body, extra_headers).await
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
struct SummarizeResponse {
|
|
output: Vec<MemorySummarizeOutput>,
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use async_trait::async_trait;
|
|
use codex_client::Request;
|
|
use codex_client::Response;
|
|
use codex_client::StreamResponse;
|
|
use codex_client::TransportError;
|
|
|
|
#[derive(Clone, Default)]
|
|
struct DummyTransport;
|
|
|
|
#[async_trait]
|
|
impl HttpTransport for DummyTransport {
|
|
async fn execute(&self, _req: Request) -> Result<Response, TransportError> {
|
|
Err(TransportError::Build("execute should not run".to_string()))
|
|
}
|
|
|
|
async fn stream(&self, _req: Request) -> Result<StreamResponse, TransportError> {
|
|
Err(TransportError::Build("stream should not run".to_string()))
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Default)]
|
|
struct DummyAuth;
|
|
|
|
impl AuthProvider for DummyAuth {
|
|
fn bearer_token(&self) -> Option<String> {
|
|
None
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn path_is_memories_trace_summarize_for_wire_compatibility() {
|
|
assert_eq!(
|
|
MemoriesClient::<DummyTransport, DummyAuth>::path(),
|
|
"memories/trace_summarize"
|
|
);
|
|
}
|
|
}
|