The Not Diamond proxy (notdiamond.ai) offers a unified way to access the world's leading AI models through a single API, including models from OpenAI, Anthropic, LLaMa 2, Mistral, and more. The benefits of using the proxy include:
- Code Simplification: Use a consistent API across different AI providers
- Cost Reduction: The proxy automatically caches results, reusing them when possible
- Enhanced Observability: Log requests automatically for better tracking and debugging
- Smart Model Routing: Automatically recommends the best AI model for each query
- Real-time Learning: Improves recommendations based on user feedback
See the full list of supported models at docs.notdiamond.ai. Try out our interactive chat interface at chat.notdiamond.ai.
This repository contains the code for the proxy — both the underlying implementation and wrappers that allow you to deploy it on Vercel, Cloudflare, AWS Lambda, or an Express server.
You can communicate with the proxy via the standard OpenAI drivers/API, and simply set the base url to
https://proxy.notdiamond.ai/v1/proxy
and add your provider API keys at https://app.notdiamond.ai/ai-providers
. Try running the following script in your favorite language.
import { OpenAI } from "openai";
const client = new OpenAI({
baseURL: "https://proxy.notdiamond.ai/v1/proxy",
apiKey: process.env.NOTDIAMOND_API_KEY, // Can use also use OpenAI, Anthropic, etc. keys directly if only using 1 provider
});
async function main() {
const start = performance.now();
const response = await client.chat.completions.create({
model: 'gpt-3.5-turbo',
models: ["gpt-3.5-turbo", "claude-3-5-sonnet-20240620"],
messages: [{ role: "user", content: "What is a proxy?" }],
seed: 1, // A seed activates the proxy's cache
tradeoff: "cost",
preference_id: "your_preference_id",
});
console.log(response.choices[0].message.content);
console.log(`Took ${(performance.now() - start) / 1000}s`);
}
main();
from openai import OpenAI
import os
import time
client = OpenAI(
base_url="https://proxy.notdiamond.ai/v1/proxy",
api_key=os.environ["NOTDIAMOND_API_KEY"], # Can use also use OpenAI, Anthropic, etc. keys directly if only using 1 provider
)
start = time.time()
response = client.chat.completions.create(
model="gpt-3.5-turbo",
models=["gpt-3.5-turbo", "claude-3-5-sonnet-20240620"],
messages=[{"role": "user", "content": "What is a proxy?"}],
seed=1, // A seed activates the proxy's cache
tradeoff="cost",
preference_id="your_preference_id",
)
print(response.choices[0].message.content)
print(f"Took {time.time()-start}s")
time curl -i https://proxy.notdiamond.ai/v1/proxy/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-3.5-turbo",
"models": ["gpt-3.5-turbo", "claude-3-5-sonnet-20240620"],
"messages": [
{
"role": "user",
"content": "What is a proxy?"
}
],
"seed": 1,
"tradeoff": "cost",
"preference_id": "your_preference_id"
}' \
-H "Authorization: Bearer $NOTDIAMOND_API_KEY" # Can use also use OpenAI, Anthropic, etc. keys directly if only using 1 provider
The proxy is hosted for you, with end-to-end encryption, at https://proxy.notdiamond.ai/v1/proxy
. However, you
can also deploy it yourself and customize its behavior.
To see docs for how to deploy on various platforms, see the READMEs in the corresponding folders:
To build the proxy, install pnpm and run:
pnpm install
pnpm build