vv-agent 0.1.3

VectorVein agent runtime, SDK, CLI, tools, and workspace backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod anthropic_prompt_cache;
pub mod base;
pub mod scripted;
pub mod vv_llm_client;

pub use anthropic_prompt_cache::{
    apply_claude_prompt_cache, cache_control_ephemeral, CACHE_CONTROL_EPHEMERAL,
    PROMPT_CACHE_ENABLED_KEY, SYSTEM_PROMPT_SECTIONS_KEY,
};
pub use base::LlmClient as LLMClient;
pub use base::{EndpointTarget, LlmClient, LlmError, LlmRequest, LlmStreamCallback};
pub use scripted::ScriptedLlmClient as ScriptedLLM;
pub use scripted::{ScriptStep, ScriptStepCallback, ScriptedLlmClient};
pub use vv_llm_client::VvLlmClient as VVLlmClient;
pub use vv_llm_client::{EndpointClientSpec, NamedEndpointClientSpec, VvLlmClient};