tau Documentation
Everything you need to integrate tau into your applications and build the future of AI-powered memory.
Quick Links
API Reference
Complete API documentation
SDK Downloads
Get the latest SDKs
Examples
Code examples and tutorials
Support
Get help and support
Documentation Sections
Getting Started
Quick start guide to integrate tau into your application
- Installation
- Authentication
- First API Call
- Basic Examples
API Reference
Complete API documentation with examples and parameters
- Authentication
- Memories API
- Search API
- Webhooks API
SDKs & Libraries
Official SDKs and client libraries for popular languages
- JavaScript SDK
- Python SDK
- REST API
- GraphQL API
Security & Privacy
Learn about our security practices and data protection
- Data Encryption
- API Security
- Privacy Policy
- GDPR Compliance
Quick Start Example
Get up and running with tau in just a few lines of code.
JavaScript Example
import { tau } from '@tau/sdk';
// Initialize the client
const memory = new tau({
apiKey: 'your-api-key'
});
// Create a new memory
const newMemory = await memory.create({
content: 'Important meeting notes about Q1 planning',
tags: ['work', 'meeting', 'planning'],
source: 'slack'
});
// Search for memories
const results = await memory.search({
query: 'Q1 planning',
limit: 10
});
console.log('Found memories:', results);
Ready to get started?
Join thousands of developers who are already building with tau.