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
//! Vision and Multimodal API Implementation
//!
//! Provides access to `HuggingFace`'s computer vision models for image analysis.
//!
//! ## Features
//!
//! - **Image Classification**: Classify images into categories
//! - **Object Detection**: Detect and locate objects in images
//! - **Image-to-Text**: Generate captions and descriptions for images
//!
//! ## Usage
//!
//! ```no_run
//! # use api_huggingface::{Client, environment::HuggingFaceEnvironmentImpl, secret::Secret};
//! # use api_huggingface::vision::ImageInput;
//! # use std::fs;
//! # async fn example() -> Result< (), Box< dyn std::error::Error > > {
//! # let api_key = Secret::new("test".to_string());
//! # let env = HuggingFaceEnvironmentImpl::build(api_key, None)?;
//! # let client = Client::build(env)?;
//! # let vision = client.vision();
//! // Load image
//! let image_data = fs::read( "cat.jpg" )?;
//! let input = ImageInput::from_bytes( image_data );
//!
//! // Classify image
//! let result = vision.classify_image( input, "google/vit-base-patch16-224" ).await?;
//! println!( "Classification : {:?}", result );
//! # Ok(())
//! # }
//! ```
pub use *;
use crateClient;
/// Vision API interface
///
/// Provides methods for computer vision tasks using `HuggingFace` models.