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
//! # Used to interact with the [Model Endpoints](https://replicate.com/docs/reference/http#models.get).
//!
//! The model module contains all the functionality for interacting with the model endpoints of the Replicate API.
//! Currently supports the following endpoint:
//! * [Get Model](https://replicate.com/docs/reference/http#models.get)
//! * [Get Model Versions](https://replicate.com/docs/reference/http#models.versions.get)
//! * [List Model Versions](https://replicate.com/docs/reference/http#models.versions.list)
//! * [Delete Model Version](https://replicate.com/docs/reference/http#models.versions.delete)
//!
//! # Example
//! ```
//! use replicate_rust::Replicate;
//! let replicate = Replicate::new();
//!
//! // Run the model and wait for the result in a blocking manner.
//! let result = replicate.run(version, inputs);
//!
//! match replicate.models.get(String::from("replicate"), String::from("hello-world")) {
//! Ok(result) => println!("Success : {:?}", result),
//! Err(e) => println!("Error : {}", e),
//! };
//! ```
use crate::{api_definitions::GetModel, version::Version};
// #[derive(Clone)]
pub struct Model {
// Holds a reference to a Replicate
pub parent: crate::client::Client,
pub versions: Version,
}
/// Model struct contains all the functionality for interacting with the model endpoints of the Replicate API.
/// Currently supports the following endpoint:
/// * [Get Model](https://replicate.com/docs/reference/http#models.get)
/// * [Get Model Versions](https://replicate.com/docs/reference/http#models.versions.get)
/// * [List Model Versions](https://replicate.com/docs/reference/http#models.versions.list)
/// * [Delete Model Version](https://replicate.com/docs/reference/http#models.versions.delete)
///
impl Model {
/// Create a new Model struct.
/// # Arguments
/// * `rep` - The client (`crate::client::Client`) to use for authentication and communication.
///
pub fn new(rep: crate::client::Client) -> Self {
let versions = Version::new(rep.clone());
Self {
parent: rep,
versions,
}
}
/// Get the details of a model.
/// # Arguments
/// * `model_owner` - The owner of the model.
/// * `model_name` - The name of the model.
///
/// # Example
/// ```
/// use replicate_rust::Replicate;
/// let replicate = Replicate::new();
///
/// match replicate.models.get(String::from("replicate"), String::from("hello-world")) {
/// Ok(result) => println!("Success : {:?}", result),
/// Err(e) => println!("Error : {}", e),
/// };
pub fn get(
&self,
model_owner: String,
model_name: String,
) -> Result<GetModel, Box<dyn std::error::Error>> {
let client = reqwest::blocking::Client::new();
let response = client
.get(format!(
"{}/models/{}/{}",
self.parent.base_url, model_owner, model_name
))
.header("Authorization", format!("Token {}", self.parent.auth))
.header("User-Agent", &self.parent.user_agent)
.send()?;
let response_string = response.text()?;
let response_struct: GetModel = serde_json::from_str(&response_string)?;
Ok(response_struct)
}
}