uarp-sdk 0.5.7

Async Rust client for the UARP (Snaga) Universal Agent Runtime Platform API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
// Code generated by @uarp/codegen from spec/openapi.json. DO NOT EDIT.
//!
//! Team management and team chat

#![allow(unused_imports, clippy::too_many_arguments)]

use reqwest::Method;
use serde::{Deserialize, Serialize};

use crate::client::{Client, Request, NO_BODY, NO_QUERY};
use crate::error::Result;
use crate::generated::models;
use crate::multipart::{field_text, FilePart};
use crate::sse::EventStream;
use crate::util::encode_path;

/// Query and header parameters for `getTeamChatHistory`.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
pub struct GetTeamChatHistoryParams {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub thread_id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub include_internal: Option<bool>,
}

/// Query and header parameters for `streamTeamChatEvents`.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
pub struct StreamTeamChatEventsParams {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub thread_id: Option<String>,
}

/// Team management and team chat
#[derive(Debug, Clone)]
pub struct TeamsApi {
    pub(crate) client: Client,
}

impl Client {
    /// Team management and team chat
    pub fn teams(&self) -> TeamsApi {
        TeamsApi { client: self.clone() }
    }
}

impl TeamsApi {
    /// Add graph edge
    ///
    /// `POST /api/v1/teams/{teamId}/graph/edges`
    ///
    /// Required scopes: `agents:write`.
    pub async fn add_team_graph_edge(&self, team_id: &str, body: &models::AddTeamGraphEdgeRequest) -> Result<serde_json::Map<String, serde_json::Value>> {
        self.client
            .request_json(Request {
                method: Method::POST,
                path: format!("/api/v1/teams/{}/graph/edges", encode_path(team_id)),
                query: NO_QUERY,
                body: Some(body),
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }

    /// Add graph node
    ///
    /// `POST /api/v1/teams/{teamId}/graph/nodes`
    ///
    /// Required scopes: `agents:write`.
    pub async fn add_team_graph_node(&self, team_id: &str, body: &models::AddTeamGraphNodeRequest) -> Result<serde_json::Map<String, serde_json::Value>> {
        self.client
            .request_json(Request {
                method: Method::POST,
                path: format!("/api/v1/teams/{}/graph/nodes", encode_path(team_id)),
                query: NO_QUERY,
                body: Some(body),
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }

    /// Create a team
    ///
    /// `POST /api/v1/teams`
    ///
    /// Required scopes: `agents:write`.
    pub async fn create(&self, body: &models::TeamCreate) -> Result<models::Team> {
        self.client
            .request_json(Request {
                method: Method::POST,
                path: "/api/v1/teams".to_string(),
                query: NO_QUERY,
                body: Some(body),
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }

    /// Delete team
    ///
    /// `DELETE /api/v1/teams/{teamId}`
    ///
    /// Required scopes: `agents:write`.
    pub async fn delete(&self, team_id: &str) -> Result<models::DeleteTeamResponse> {
        self.client
            .request_json(Request {
                method: Method::DELETE,
                path: format!("/api/v1/teams/{}", encode_path(team_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }

    /// Remove edge
    ///
    /// `DELETE /api/v1/teams/{teamId}/graph/edges/{edgeId}`
    ///
    /// Required scopes: `agents:write`.
    pub async fn delete_team_graph_edge(&self, team_id: &str, edge_id: &str) -> Result<models::DeleteTeamGraphEdgeResponse> {
        self.client
            .request_json(Request {
                method: Method::DELETE,
                path: format!("/api/v1/teams/{}/graph/edges/{}", encode_path(team_id), encode_path(edge_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }

    /// Remove node
    ///
    /// `DELETE /api/v1/teams/{teamId}/graph/nodes/{agentId}`
    ///
    /// Required scopes: `agents:write`.
    pub async fn delete_team_graph_node(&self, team_id: &str, agent_id: &str) -> Result<models::DeleteTeamGraphNodeResponse> {
        self.client
            .request_json(Request {
                method: Method::DELETE,
                path: format!("/api/v1/teams/{}/graph/nodes/{}", encode_path(team_id), encode_path(agent_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }

    /// Get team
    ///
    /// `GET /api/v1/teams/{teamId}`
    ///
    /// Required scopes: `agents:read`.
    pub async fn get(&self, team_id: &str) -> Result<models::Team> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}", encode_path(team_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// Get team chat history
    ///
    /// `GET /api/v1/teams/{teamId}/chat`
    ///
    /// Required scopes: `agents:read`.
    pub async fn get_team_chat_history(&self, team_id: &str, params: &GetTeamChatHistoryParams) -> Result<models::GetTeamChatHistoryResponse> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}/chat", encode_path(team_id)),
                query: Some(params),
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// Get full team graph
    ///
    /// `GET /api/v1/teams/{teamId}/graph`
    ///
    /// Required scopes: `agents:read`.
    pub async fn get_team_graph(&self, team_id: &str) -> Result<models::GetTeamGraphResponse> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}/graph", encode_path(team_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// Get graph node
    ///
    /// `GET /api/v1/teams/{teamId}/graph/nodes/{agentId}`
    ///
    /// Required scopes: `agents:read`.
    pub async fn get_team_graph_node(&self, team_id: &str, agent_id: &str) -> Result<serde_json::Map<String, serde_json::Value>> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}/graph/nodes/{}", encode_path(team_id), encode_path(agent_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// Get specific team run
    ///
    /// `GET /api/v1/teams/{teamId}/runs/{teamRunId}`
    ///
    /// Required scopes: `agents:read`.
    pub async fn get_team_run(&self, team_id: &str, team_run_id: &str) -> Result<serde_json::Map<String, serde_json::Value>> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}/runs/{}", encode_path(team_id), encode_path(team_run_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// Get team run messages
    ///
    /// `GET /api/v1/teams/{teamId}/runs/{teamRunId}/messages`
    ///
    /// Required scopes: `agents:read`.
    pub async fn get_team_run_messages(&self, team_id: &str, team_run_id: &str) -> Result<models::GetTeamRunMessagesResponse> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}/runs/{}/messages", encode_path(team_id), encode_path(team_run_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// List teams
    ///
    /// `GET /api/v1/teams`
    ///
    /// Required scopes: `agents:read`.
    pub async fn list(&self) -> Result<models::ListTeamsResponse> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: "/api/v1/teams".to_string(),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// List graph edges
    ///
    /// `GET /api/v1/teams/{teamId}/graph/edges`
    ///
    /// Required scopes: `agents:read`.
    pub async fn list_team_graph_edges(&self, team_id: &str) -> Result<models::ListTeamGraphEdgesResponse> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}/graph/edges", encode_path(team_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// List graph nodes
    ///
    /// `GET /api/v1/teams/{teamId}/graph/nodes`
    ///
    /// Required scopes: `agents:read`.
    pub async fn list_team_graph_nodes(&self, team_id: &str) -> Result<models::ListTeamGraphNodesResponse> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}/graph/nodes", encode_path(team_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// List runs for a team
    ///
    /// `GET /api/v1/teams/{teamId}/runs`
    ///
    /// Required scopes: `agents:read`.
    pub async fn list_team_runs(&self, team_id: &str) -> Result<models::ListTeamRunsResponse> {
        self.client
            .request_json(Request {
                method: Method::GET,
                path: format!("/api/v1/teams/{}/runs", encode_path(team_id)),
                query: NO_QUERY,
                body: NO_BODY,
                headers: Vec::new(),
                idempotent: false,
            })
            .await
    }

    /// Start a team run
    ///
    /// `POST /api/v1/teams/{teamId}/runs`
    ///
    /// Required scopes: `agents:write`.
    pub async fn start_team_run(&self, team_id: &str, body: &models::StartTeamRunRequest) -> Result<serde_json::Map<String, serde_json::Value>> {
        self.client
            .request_json(Request {
                method: Method::POST,
                path: format!("/api/v1/teams/{}/runs", encode_path(team_id)),
                query: NO_QUERY,
                body: Some(body),
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }

    /// SSE stream for team chat
    ///
    /// `GET /api/v1/teams/{teamId}/chat/events`
    ///
    /// Required scopes: `agents:read`.
    ///
    /// Returns a server-sent event stream.
    pub fn stream_team_chat_events(&self, team_id: &str, params: &StreamTeamChatEventsParams) -> EventStream {
        self.client.request_stream(
            &format!("/api/v1/teams/{}/chat/events", encode_path(team_id)),
            Some(params),
            Vec::new(),
        )
    }

    /// Stream team run events (SSE)
    ///
    /// `GET /api/v1/teams/{teamId}/runs/{runId}/events`
    ///
    /// Required scopes: `agents:read`.
    ///
    /// Returns a server-sent event stream.
    pub fn stream_team_run_events(&self, team_id: &str, run_id: &str) -> EventStream {
        self.client.request_stream(
            &format!("/api/v1/teams/{}/runs/{}/events", encode_path(team_id), encode_path(run_id)),
            NO_QUERY,
            Vec::new(),
        )
    }

    /// Update team
    ///
    /// `PUT /api/v1/teams/{teamId}`
    ///
    /// Required scopes: `agents:write`.
    pub async fn update(&self, team_id: &str, body: &models::TeamUpdate) -> Result<models::Team> {
        self.client
            .request_json(Request {
                method: Method::PUT,
                path: format!("/api/v1/teams/{}", encode_path(team_id)),
                query: NO_QUERY,
                body: Some(body),
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }

    /// Update graph node
    ///
    /// `PATCH /api/v1/teams/{teamId}/graph/nodes/{agentId}`
    ///
    /// Required scopes: `agents:write`.
    pub async fn update_team_graph_node(&self, team_id: &str, agent_id: &str, body: &models::UpdateTeamGraphNodeRequest) -> Result<serde_json::Map<String, serde_json::Value>> {
        self.client
            .request_json(Request {
                method: Method::PATCH,
                path: format!("/api/v1/teams/{}/graph/nodes/{}", encode_path(team_id), encode_path(agent_id)),
                query: NO_QUERY,
                body: Some(body),
                headers: Vec::new(),
                idempotent: true,
            })
            .await
    }
}