Skip to content
Merged
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
17 changes: 14 additions & 3 deletions website/src/pages/cookbook/_ignored.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ interface RecipeData {
videoUrl?: string
}

const description =
'A collection of guides and samples to help you build data-grounded AI apps and agents with Spice.ai Open-Source. Find ready-to-use examples for data acceleration, AI agents, LLM memory, and more.'

const recipeBaseUrl = 'https://github.com/spiceai/cookbook/blob/trunk'

const recipes: RecipeData[] = [
Expand Down Expand Up @@ -100,6 +97,12 @@ const recipes: RecipeData[] = [
path: '/deepseek/README.md',
tags: ['ai', 'deepseek', 'models']
},
{
title: 'Model-Context-Protocol (MCP)',
description: 'Use Spice to connect to or host MCP servers.',
path: '/mcp/README.md',
tags: ['ai', 'mcp', 'tools']
},
// Data Acceleration
{
title: 'DuckDB Data Accelerator',
Expand Down Expand Up @@ -307,6 +310,12 @@ const recipes: RecipeData[] = [
path: '/grafana-datasource/README.md',
tags: ['client', 'grafana', 'datasource']
},
{
title: 'IMAP Emails',
description: 'Federated SQL query of mail across IMAP email servers',
path: '/imap/README.md',
tags: ['connector', 'imap', 'datasource']
},
// Deployment
{
title: 'Deploying to Kubernetes',
Expand Down Expand Up @@ -453,6 +462,8 @@ export function CookbookPage() {
const filterByTag = (...tags: string[]) =>
recipes.filter((r) => r.tags.some((t) => tags.includes(t)))

const description = `${recipes.length} guides and samples to help you build data-grounded AI apps and agents with Spice.ai Open-Source. Find ready-to-use examples for data acceleration, AI agents, LLM memory, and more.`

return (
<div className='tailwind font-sans'>
<Title as='h1' variant='large' className='mx-auto mb-7 mt-8 md:text-center xl:max-w-[1020px]'>
Expand Down