| Crates.io | praxis-context |
| lib.rs | praxis-context |
| version | 0.2.0 |
| created_at | 2025-11-09 23:43:35.309634+00 |
| updated_at | 2025-11-11 00:41:21.10922+00 |
| description | Context management and summarization for AI agent conversations |
| homepage | https://github.com/matheussilva/praxis |
| repository | https://github.com/matheussilva/praxis |
| max_upload_size | |
| id | 1924581 |
| size | 57,886 |
Context management and summarization for AI agent conversations.
use praxis_context::{DefaultContextStrategy, ContextStrategy};
use praxis_persist::PersistenceClient;
use std::sync::Arc;
let strategy = DefaultContextStrategy::new(
llm_client,
max_tokens: 8000,
);
let context = strategy.get_context_window(
thread_id,
persist_client,
).await?;