stakpak-api 0.3.78

Stakpak: Your DevOps AI Agent. Generate infrastructure code, debug Kubernetes, configure CI/CD, automate deployments, without giving an LLM the keys to production.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use stakpak_shared::models::{integrations::openai::ChatMessage, llm::LLMMessage};

pub trait ContextManager: Send + Sync {
    fn reduce_context(&self, messages: Vec<ChatMessage>) -> Vec<LLMMessage>;
}

pub mod common;
pub mod file_scratchpad_context_manager;
pub mod scratchpad_context_manager;
pub mod simple_context_manager;
pub mod task_board_context_manager;