mistral-rouille 1.1.4

Mistral Rouille is a Rust crate customized from Mistral's official OpenAPI specification. This crate provides a convenient and type-safe interface for interacting with Mistral's API, using the Reqwest crate for HTTP requests. Designed to be easily integrated into your Rust projects, Mistral Rouille offers robust functionality for all Mistral API endpoints, ensuring seamless communication with the configured endpoint.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# FileSchema

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | [**uuid::Uuid**]uuid::Uuid.md | The file identifier, which can be referenced in the API endpoints | 
**object** | **String** | The object type, which is always `file`. | 
**bytes** | **i32** | The size of the file, in bytes. | 
**created_at** | **i32** | The UNIX timestamp (in seconds) for when the file was created. | 
**filename** | **String** | The name of the file | 
**purpose** | **String** | The intended purpose of the file. Only supports `fine-tune` for now. | 

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)