This is the official Clarifai gRPC Rust client for interacting with our powerful recognition API. Clarifai provides a platform for data scientists, developers, researchers and enterprises to master the entire artificial intelligence lifecycle. Gather valuable business insights from images, video and text using computer vision and natural language processing.
Add these dependencies to Cargo.toml
: clarifai_grpc
, protobuf
and grpcio
.
[dependencies]
clarifai_grpc = "*"
grpcio = "0.6.0"
protobuf = "2.0"
This library doesn't use semantic versioning. The first two version numbers (X.Y
out of X.Y.Z
) follow the API (backend) versioning, and
whenever the API gets updated, this library follows it.
The third version number (Z
out of X.Y.Z
) is used by this library for any independent releases of library-specific improvements and bug fixes.
Construct the V2Client
object using which you'll access all the Clarifai API functionality,
and a CallOption
object that will be used for authentication.
```rust use grpcio::{CallOption, MetadataBuilder}; use protobuf::{RepeatedField, SingularPtrField};
use clarifaigrpc::clarifaichannel; use clarifaigrpc::grpc::resources; use clarifaigrpc::grpc::service; use clarifaigrpc::grpc::servicegrpc::V2Client; use clarifaigrpc::grpc::statuscode::StatusCode;
let client = V2Client::new(clarifai_channel::grpc());
// Setup authentication. let auth = "Key YOURCLARIFAIAPIKEYORPAT".tostring();
let mut builder = MetadataBuilder::withcapacity(1); builder.addstr("Authorization", &auth).unwrap(); let metadata = builder.build(); let call_opt = CallOption::default().headers(metadata); ```
On Windows and macOS gRPC requires explicitly setting the root of trust for SSL. One way to do this is by setting the
GRPC_DEFAULT_SSL_ROOTS_FILE_PATH
environmental variable. To do this on macOS use:
curl -Lo roots.pem https://raw.githubusercontent.com/grpc/grpc/master/etc/roots.pem export GRPC_DEFAULT_SSL_ROOTS_FILE_PATH="$PWD/roots.pem"
On Windows use:
@powershell -NoProfile -ExecutionPolicy unrestricted -Command ^ (new-object System.Net.WebClient).Downloadfile( ^ 'https://raw.githubusercontent.com/grpc/grpc/master/etc/roots.pem', ^ 'roots.pem') set GRPC_DEFAULT_SSL_ROOTS_FILE_PATH=%cd%\roots.pem
See more here.
Predict concepts in an image:
```rust // This is a publicly available model. const GENERALMODELID: &str = "aaa03c23b3724a16a56b629203edc62c";
let request = service::PostModelOutputsRequest { modelid: GENERALMODELID.tostring(), inputs: RepeatedField::from(vec![resources::Input { data: SingularPtrField::some(resources::Data { image: SingularPtrField::some(resources::Image { url: "https://samples.clarifai.com/dog2.jpeg".tostring(), ..Default::default() }), ..Default::default() }), ..Default::default() }]), ..Default::default() }; let response = client .postmodeloutputsopt(&request, call_opt) .expect("Failure");
let status = response.getstatus(); if status.getcode() != StatusCode::SUCCESS { println!("Failure response:"); println!("\t{:?}", status.getcode()); println!("\t{}", status.getdescription()); println!("\t{}", status.get_details()); std::process::exit(1); }
println!("Predicted concepts:"); for concept in response.getoutputs()[0].getdata().getconcepts() { println!("\t{}: {}", concept.getname(), concept.get_value()); } ```