Tables
Comparison matrices, pricing breakdowns, feature lists, and specification tables.
The Studio panel captures and organizes structured outputs from your Lab conversations. When the AI generates useful artifacts like comparison tables or architecture diagrams, you can save them for reference and export.
Tables
Comparison matrices, pricing breakdowns, feature lists, and specification tables.
Charts
Benchmark visualizations, cost projections, performance graphs, and trend analysis.
Memos
Executive summaries, decision rationales, recommendation documents, and research notes.
Diagrams
Architecture diagrams, flow charts, system designs, and integration maps.
Lattice automatically detects artifacts in AI responses:
| Model | Context Window | Price per 1M tokens ||-------|----------------|---------------------|| Claude Sonnet | 200K | $3.00 input / $15.00 output || GPT-4 Turbo | 128K | $10.00 input / $30.00 output || Gemini Pro | 32K | $0.50 input / $1.50 output |When a structured element is detected, a Save to Studio button appears.
You can also manually select any portion of a response and save it:
Click any artifact in the Studio panel to:
Each artifact stores:
| Property | Description |
|---|---|
title | User-defined name for the artifact |
type | table, chart, memo, or diagram |
content | The artifact data (markdown, JSON, or SVG) |
source_message_id | Link to originating conversation |
created_at | Timestamp of creation |
Generate side-by-side comparisons for decision-making:
"Create a comparison table of Claude, GPT-4, and Geminifor production RAG applications. Include context window,pricing, latency, and key limitations."Generate board-ready documentation:
"Write an executive memo recommending our AI model choicefor the Q1 chatbot launch. Include cost projections andrisk assessment."Visualize system designs:
"Create an architecture diagram showing how our RAG pipelineshould integrate with Claude API, including caching andfallback providers."Visualize performance data:
"Create a chart comparing latency benchmarks for Claude Haiku,GPT-4 Mini, and Gemini Flash at different request volumes."GET /api/workspaces/{workspace_id}/artifactsPOST /api/workspaces/{workspace_id}/artifactsContent-Type: application/json
{ "title": "Model Comparison Q1 2024", "type": "table", "content": "| Model | Context | Price |..."}GET /api/workspaces/{workspace_id}/artifacts/{artifact_id}PATCH /api/workspaces/{workspace_id}/artifacts/{artifact_id}Content-Type: application/json
{ "title": "Updated Title"}DELETE /api/workspaces/{workspace_id}/artifacts/{artifact_id}