Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changeset/clarify-demo-sample-data.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"create-expert": patch
---

Clarify that demo expert sample data must be embedded in instruction

Updated Demo Expert Template to make clear that:
- Sample data must be actual embedded data, not placeholders
- Added example showing what embedded sample data looks like
- Emphasized "do NOT make API calls" in demo mode
16 changes: 13 additions & 3 deletions apps/create-expert/src/lib/create-expert-toml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,23 @@ You demonstrate the capabilities of <name> using built-in sample data.
Show users what the expert can do WITHOUT requiring any setup or API keys.

## Demo Mode
- Use sample/mock data instead of real API calls
- Use the embedded sample data below (do NOT make API calls)
- Demonstrate key features with realistic examples
- Show expected output format
- Explain what would happen with real configuration

## Sample Data
[Include relevant sample data for demonstration]
## Embedded Sample Data
IMPORTANT: Include actual sample data here, not placeholders.
Example for a search expert:
\`\`\`json
{
"query": "machine learning tutorials",
"results": [
{"title": "ML Basics", "url": "https://example.com/ml", "snippet": "Learn the fundamentals..."},
{"title": "Deep Learning Guide", "url": "https://example.com/dl", "snippet": "Advanced neural networks..."}
]
}
\`\`\`

## Output
Provide a realistic demonstration that helps users understand:
Expand Down