Python & Node
The Portkey SDK client enables various features of Portkey in an easy to use config-as-code
paradigm.
Install the Portkey SDK
Add the Portkey SDK to your application to interact with Portkey’s gateway.
Export Portkey API Key
Basic Client Setup
The basic Portkey SDK client needs 2 required parameters
- The Portkey Account’s API key to authenticate all your requests
- The virtual key of the AI provider you want to use OR The config being used
This is achieved through headers when you’re using the REST API.
For example,
Find more info on what’s available through configs here.
Making a Request
You can then use the client to make completion and other calls like this
Passing Trace ID or Metadata
You can choose to override the configuration in individual requests as well and send trace id or metadata along with each request.
Async Usage
Portkey’s Python SDK supports Async usage - just use AsyncPortkey
instead of Portkey
with await
:
Parameters
Following are the parameter keys that you can add while creating the Portkey client.
Keeping in tune with the most popular language conventions, we use:
-
camelCase for Javascript keys
-
snake_case for Python keys
-
hyphenated-keys for the headers
Parameter | Type | Key |
---|---|---|
API Key Your Portkey account’s API Key. | stringrequired | apiKey |
Virtual Key The virtual key created from Portkey’s vault for a specific provider | string | virtualKey |
Config The slug or config object to use | stringobject | config |
Provider The AI provider to use for your calls. (supported providers). | string | provider |
Base URL You can edit the URL of the gateway to use. Needed if you’re self-hosting the AI gateway | string | baseURL |
Trace ID An ID you can pass to refer to 1 or more requests later on. Generated automatically for every request, if not sent. | string | traceID |
Metadata Any metadata to attach to the requests. These can be filtered later on in the analytics and log dashboards Can contain _prompt , _user , _organisation , or _environment that are special metadata types in Portkey. You can also send any other keys as part of this object. | object | metadata |
Cache Force Refresh Force refresh the cache for your request by making a new call and storing that value. | boolean | cacheForceRefresh |
Cache Namespace Partition your cache based on custom strings, ignoring metadata and other headers. | string | cacheNamespace |
Custom Host Route to locally or privately hosted model by configuring the API URL with custom host | string | customHost |
Forward Headers Forward sensitive headers directly to your model’s API without any processing from Portkey. | array of string | forwardHeaders |
Azure OpenAI Headers Configuration headers for Azure OpenAI that you can send separately | string | azureResourceName azureDeploymentId azureApiVersion azureModelName |
Google Vertex AI Headers Configuration headers for Vertex AI that you can send separately | string | vertexProjectId vertexRegion |
AWS Bedrock Headers Configuration headers for Bedrock that you can send separately | string | awsAccessKeyId awsSecretAccessKey awsRegion awsSessionToken |
Was this page helpful?