1 unstable release

new 0.1.0 Nov 16, 2024

#919 in Network programming

Download history 82/week @ 2024-11-12

82 downloads per month

MIT license

16KB

Portkey Rust SDK

The portkey crate is a lightweight wrapper around async-openai designed to provide a Portkey-compatible OpenAI client. It simplifies the process of configuring custom clients to work seamlessly with the Portkey AI API.

Features

  • Easy initialization with API and virtual keys.
  • Fully compatible with async-openai.
  • Pre-configured headers for Portkey's API requirements.

Future Plans

Currently, this SDK serves as a simple wrapper around async-openai, making it Portkey-compatible. However, the goal is to expand it in the future to fully support the entire Portkey API, offering advanced functionality for developers.

Installation

Install the crate using Cargo:

cargo add portkey

Usage

Here's how to use the portkey client:

use portkey::Client;

#[tokio::main]
async fn main() {
    let api_key = "your-portkey-api-key";
    let virtual_key = "your-portkey-virtual-key";

    // Create a new Portkey client
    let client = Client::new(api_key, virtual_key);

    // Access the OpenAI client
    let openai_client = client.openai();

    // Example API call
    let response = openai_client
        .completions()
        .create("text-davinci-003", "Hello, Portkey!", None)
        .await
        .expect("API call failed");

    println!("{:?}", response);
}

License

This project is licensed under the MIT License. See the LICENSE file for details.

Dependencies

~9–21MB
~286K SLoC