Introduction to Tenzro Cloud

Tenzro Cloud is an AI-native cloud infrastructure platform that provides everything you need to build, deploy, and scale AI applications. From vector databases and key-value stores to LLM inference and agent orchestration, Tenzro Cloud offers a complete suite of services.

Key Features

  • Vec - Vector databases powered by Milvus for embeddings and similarity search
  • Kev - Key-value stores powered by Redis for caching and real-time data
  • Data - Relational databases powered by PostgreSQL with full SQL support
  • Graph - Graph databases with ArangoDB for connected data
  • File - Object storage powered by Google Cloud Storage
  • AI - Unified API for Google, OpenAI, and Anthropic models
  • Agents - AI agent orchestration with MCP server support
  • Enclaves - Confidential computing with AMD SEV-SNP and Intel TDX

Quick Example

Here's a quick example using the TypeScript SDK:

example.ts
import { Tenzro } from 'tenzro';
const tenzro = new Tenzro({
apiKey: process.env.TENZRO_API_KEY!,
});
// AI Chat
const response = await tenzro.ai.chat({
model: 'gemini-2.5-flash',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.content);
// Vector Search
const results = await tenzro.vec.search('my-vectors', {
vector: [0.1, 0.2, 0.3, ...],
topK: 10,
});
// Key-Value Store
await tenzro.kev.set('session:123', { user: 'john' });
const session = await tenzro.kev.get('session:123');

Getting Started

The easiest way to get started is with our Quickstart Guide. You'll have your first AI application running in under 5 minutes.

Base URL

All API requests are made to:

https://api.cloud.tenzro.com

Authentication

All API requests require authentication via an API key. Include your key in theAuthorization header:

curl https://api.cloud.tenzro.com/cloud/ai/models \
-H "Authorization: Bearer YOUR_API_KEY"