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
/*
* Hanzo Cloud API
*
* The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct EngineAdvertisement {
/// APIs are the wire formats the engine serves on that one port: \"openai\", \"anthropic\", or both.
#[serde(rename = "apis", skip_serializing_if = "Option::is_none")]
pub apis: Option<Vec<String>>,
/// Models are the model ids the node's own GET /v1/models answered with — what this GPU can actually be asked for.
#[serde(rename = "models", skip_serializing_if = "Option::is_none")]
pub models: Option<Vec<String>>,
/// Status is \"ready\" when the node's engine answered, \"unreachable\" when it did not. Advertised is not the same as serving, and this is the difference.
#[serde(rename = "status", skip_serializing_if = "Option::is_none")]
pub status: Option<String>,
/// URL is the base address the node advertised its engine on — where a model call to this GPU is sent. The node chose it, so reaching it is a question about the node's network, not about this surface.
#[serde(rename = "url", skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
}
impl EngineAdvertisement {
pub fn new() -> EngineAdvertisement {
EngineAdvertisement {
apis: None,
models: None,
status: None,
url: None,
}
}
}