Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T04:01:55.867Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

predict_edits_v4.rs

16 lines · 417 B · rust
1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Serialize, Deserialize)]
4pub struct PredictEditsV4Request {
5    #[serde(flatten)]
6    pub input: zeta_prompt::Zeta3PromptInput,
7}
8
9#[derive(Debug, Deserialize, Serialize)]
10pub struct PredictEditsV4Response {
11    pub request_id: String,
12    pub patch: String,
13    #[serde(default, skip_serializing_if = "Option::is_none")]
14    pub model_version: Option<String>,
15}
16
Served at tenant.openagents/omega Member data and write actions are omitted.