1export type UseCaseData = {
2  title: string
3  description: string
4  buttonText: string
5  buttonLink: string
6}
7
8export const dataUseCases: UseCaseData[] = [
9  {
10    title: 'Agentic AI Applications',
11    description:
12      'Build data-grounded AI apps and agents with local or hosted models, LLM memory, evals, and observability.',
13    buttonText: 'Try using the OpenAI SDK',
14    buttonLink: 'https://github.com/spiceai/cookbook/blob/trunk/openai_sdk/README.md'
15  },
16  {
17    title: 'Retrieval-Augmented Generation (RAG)',
18    description:
19      'Ensure AI is grounded in data with high-performance search and text-to-SQL, across a semantic knowledge layer.',
20    buttonText: 'Try Text-to-SQL',
21    buttonLink: 'https://github.com/spiceai/cookbook/blob/trunk/text-to-sql/README.md'
22  },
23  {
24    title: 'Database CDN',
25    description:
26      'Co-locate working sets of data in Arrow, SQLite, and DuckDB with applications for fast, sub-second query.',
27    buttonText: 'Try accelerating data with DuckDB',
28    buttonLink: 'https://github.com/spiceai/cookbook/blob/trunk/duckdb/accelerator/README.md'
29  },
30  {
31    title: 'Distributed Data Mesh',
32    description:
33      'Use SQL to query across databases, data warehouses, and data lakes with advanced federation.',
34    buttonText: 'Try federated SQL Query',
35    buttonLink: 'https://github.com/spiceai/cookbook/blob/trunk/federation/README.md'
36  }
37]
38
1export type UseCaseData = {
2  title: string
3  description: string
4  buttonText: string
5  buttonLink: string
6}
7
8export const dataUseCases: UseCaseData[] = [
9  {
10    title: 'Agentic AI Applications',
11    description:
12      'Build data-grounded AI apps and agents with local or hosted models, LLM memory, evals, and observability.',
13    buttonText: 'Try using the OpenAI SDK',
14    buttonLink: 'https://github.com/spiceai/cookbook/blob/trunk/openai_sdk/README.md'
15  },
16  {
17    title: 'Retrieval-Augmented Generation (RAG)',
18    description:
19      'Ensure AI is grounded in data with high-performance search and text-to-SQL, across a semantic knowledge layer.',
20    buttonText: 'Try Text-to-SQL',
21    buttonLink: 'https://github.com/spiceai/cookbook/blob/trunk/text-to-sql/README.md'
22  },
23  {
24    title: 'Database CDN',
25    description:
26      'Co-locate working sets of data in Arrow, SQLite, and DuckDB with applications for fast, sub-second query.',
27    buttonText: 'Try accelerating data with DuckDB',
28    buttonLink: 'https://github.com/spiceai/cookbook/blob/trunk/duckdb/accelerator/README.md'
29  },
30  {
31    title: 'Distributed Data Mesh',
32    description:
33      'Use SQL to query across databases, data warehouses, and data lakes with advanced federation.',
34    buttonText: 'Try federated SQL Query',
35    buttonLink: 'https://github.com/spiceai/cookbook/blob/trunk/federation/README.md'
36  }
37]
38