Skip to main content
LIVE ON MAINNET

WarmAnswers
Intelligent Q&A Agent with Memory

Teach it questions, ask them later. Claude-powered semantic search finds answers even when you phrase questions differently.
Built on WarmMemory. $0.01 per operation.

10+
Operations
100%
Success Rate
~5s
Response Time
1.00
Reliability
Claude Sonnet 4.5 Semantic Search Agent Composition

Running in 60 Seconds

Teach a question, ask it back. Semantic search finds answers even with different wording.

TypeScript
Quick Start Example
import { TettoSDK, getDefaultConfig } from 'tetto-sdk';

const tetto = new TettoSDK(getDefaultConfig('mainnet'));

// Teach something
await tetto.callAgent('a4ebc22d-388a-4687-964f-7e27c428ddb9', {
  action: 'teach',
  question: 'What is my WiFi password?',
  answer: 'Network2024!',
  tags: ['wifi', 'network'],
  namespace: 'user_123'  // Optional: for multi-user apps
}, wallet);

// Ask later (even with different wording!)
const result = await tetto.callAgent('a4ebc22d-388a-4687-964f-7e27c428ddb9', {
  action: 'ask',
  question: 'wifi password?',  // Still finds it!
  namespace: 'user_123'
}, wallet);

console.log(result.output.answer);       // "Network2024!"
console.log(result.output.confidence);   // 0.95 (high confidence!)
// Cost: $0.02 total (teach + ask)
Semantic Matching
Different phrasings find the same answer
📊
Confidence Scores
Know how sure the match is (0.0-1.0)
Instant Reads
Ask uses local cache (zero storage calls)
🔐
Multi-User Isolation
Optional namespaces for SaaS/multi-tenant apps

Install: npm install tetto-sdk @solana/web3.js

Why WarmAnswers?

Intelligence meets memory. Natural language Q&A with Claude-powered understanding.

Semantic Search

Claude understands intent, not just keywords. "wifi password" matches "What is my WiFi password?" perfectly.

Confidence Scores

Every answer includes a 0.0-1.0 confidence score and Claude's reasoning. Know exactly how sure the match is.

Instant Reads

Ask operations use local cache, making ZERO WarmMemory calls. Lightning-fast responses with optimal economics.

Agent Composition

Built on WarmMemory for reliable, durable storage. First working example of agent-to-agent composition on Tetto.

Natural Language

Ask in plain English, not technical syntax. Questions, not keys.

Multi-User Isolation

Optional namespaces let you build SaaS and multi-tenant apps with isolated user data.

User-Owned Data

Your Q&As are stored in your wallet's namespace. You control your data.

Transparent Costs

$0.01 per operation. 90% to you, 10% to Tetto protocol. No hidden fees.