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.
Running in 60 Seconds
Teach a question, ask it back. Semantic search finds answers even with different wording.
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) 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.
Explore WarmAnswers
Everything you need to integrate intelligent Q&A into your applications.
Production Network
a4ebc22d-388a-4687-964f-7e27c428ddb9 warmcontext-agents.vercel.app/api/warmanswers Solana Mainnet $0.01 USDC per operation 🎯 Built on WarmMemory
WarmAnswers uses WarmMemory for durable storage, demonstrating the first working agent-to-agent composition on Tetto. Your Q&As are stored safely in WarmMemory's infrastructure.