Tables
Comparison matrices, pricing breakdowns, feature lists
Lattice is built around a few core concepts that work together to help you make informed AI infrastructure decisions.
A Workspace is an isolated container for a specific research initiative. Each workspace has its own:
Workspaces are completely isolated from each other:
Workspace: "Claude Sonnet Evaluation"├── Sources (5 documents)├── Messages (23 conversations)├── Artifacts (3 comparison tables)├── Scenarios (2 configurations)└── Stacks (1 recommendation)
Workspace: "RAG Pipeline Research"├── Sources (12 documents)├── Messages (45 conversations)├── Artifacts (7 diagrams)├── Scenarios (4 configurations)└── Stacks (3 recommendations)Sources are the knowledge foundation of your workspace. Lattice indexes content from:
| Source Type | Description | Best For |
|---|---|---|
| URL | Web pages, documentation, blog posts | Official docs, pricing pages, announcements |
| Uploaded documents | Research papers, model cards, internal docs | |
| GitHub | Repository contents | Code analysis, README evaluation |
| YouTube | Video transcripts | Tutorials, conference talks |
| Google Docs | Drive documents | Team notes, specifications |
When you add a source, Lattice:
The result is a searchable knowledge base that powers grounded AI responses.
The Lab is where you interact with the AI assistant. It provides:
Every query searches your sources using three modes:
Responses include numbered citations linking to source passages:
Based on the documentation [1], Claude Sonnet offers a 200Kcontext window [2], while GPT-4 Turbo supports 128K tokens [3].
[1] Anthropic Documentation - Model Overview[2] Anthropic Documentation - Context Windows[3] OpenAI Documentation - GPT-4 TurboThe AI exposes its reasoning process:
[Thinking] Analyzing the query about context windows...[Thinking] Found 3 relevant sources with pricing information...[Thinking] Comparing specifications across providers...The Studio panel captures structured outputs from conversations:
Tables
Comparison matrices, pricing breakdowns, feature lists
Charts
Benchmark visualizations, cost projections, performance graphs
Memos
Executive summaries, decision rationales, recommendation docs
Diagrams
Architecture diagrams, flow charts, system designs
Artifacts are automatically detected and extracted from AI responses, or you can manually save content to Studio.
A Scenario defines the requirements for a specific workload:
interface Scenario { // What type of AI workload workload_type: 'chat' | 'rag' | 'agentic' | 'code' | 'embedding' | 'fine-tuning';
// Traffic patterns traffic_profile: 'low_volume' | 'medium_volume' | 'high_volume' | 'burst';
// Performance requirements slo_requirements: { p50_latency_ms: number; p95_latency_ms: number; p99_latency_ms: number; throughput_rps: number; availability: number; // e.g., 99.9 };
// Cost constraints budget: { monthly_limit_usd: number; cost_per_1k_requests_usd: number; };
// Compliance needs compliance: { regions: string[]; certifications: string[]; vendor_lock_in_tolerance: 'none' | 'low' | 'medium' | 'high'; };}Scenarios enable “what-if” analysis: “What’s the best stack for a high-volume chat application with strict latency requirements?”
A Stack is a complete infrastructure configuration recommended for a scenario:
interface Stack { // Model configuration model: { provider: 'anthropic' | 'openai' | 'google' | 'ollama'; model_id: string; temperature: number; max_tokens: number; };
// Framework configuration framework: { orchestration: 'langgraph' | 'langchain' | 'custom'; observability: string; logging: string; };
// Hardware configuration hardware: { cloud_provider: 'aws' | 'gcp' | 'azure'; region: string; gpu_type?: string; instance_family: string; };}Stacks answer the question: “Given my requirements, what should I actually deploy?”
Blueprints are pre-curated knowledge bundles that give you a head start:
When you apply a blueprint, Lattice imports:
┌─────────────────────────────────────────────────────────────┐│ WORKSPACE │├─────────────────────────────────────────────────────────────┤│ ││ SOURCES ─────────> LAB ─────────> STUDIO ││ (Knowledge) (Chat) (Artifacts) ││ │ │ │ ││ └───────────────┴────────────────┘ ││ │ ││ ┌─────────┴─────────┐ ││ ▼ ▼ ││ SCENARIOS STACKS ││ (Requirements) (Recommendations) ││ │└─────────────────────────────────────────────────────────────┘