1---
2sidebar_position: 0
3title: Home
4---
5
6import ReactPlayer from 'react-player'
7import ThemeBasedImage from '@site/src/components/ThemeBasedImage'
8
9# Spice.ai Open Source
10
11**Spice** is a SQL query, search, and LLM-inference engine, written in Rust, for data-driven applications and AI agents.
12
13
14
15Spice provides four industry-standard APIs in a lightweight, portable runtime (single ~140 MB binary):
16
171. **SQL Query & Search APIs**: Supports HTTP, Arrow Flight, Arrow Flight SQL, ODBC, JDBC, ADBC, and `vector_search` and `text_search` UDTFs.
182. **OpenAI-Compatible APIs**: Provides HTTP APIs for OpenAI SDK compatibility, local model serving (CUDA/Metal accelerated), and hosted model gateway.
193. **Iceberg Catalog REST APIs**: Offers a unified API for Iceberg Catalog.
204. **MCP HTTP+SSE APIs**: Enables integration with external tools via Model Context Protocol (MCP) using HTTP and Server-Sent Events (SSE).
21
22:::tip[Goal 🎯]
23Developers can focus on building data apps and AI agents confidently, knowing they are grounded in data.
24:::
25
26Spice is primarily used for:
27
28- **Data Federation**: SQL query across any database, data warehouse, or data lake. [Learn More](https://spiceai.org/docs/features/query-federation).
29- **Data Materialization and Acceleration**: Materialize, accelerate, and cache database queries. [Read the MaterializedView interview - Building a CDN for Databases](https://materializedview.io/p/building-a-cdn-for-databases-spice-ai).
30- **Enterprise Search**: Keyword, vector, and full-text search with Tantivy-powered BM25 and vector similarity search for structured and unstructured data. [Learn More](https://github.com/spiceai/cookbook/blob/trunk/vectors/s3/README.md).
31- **AI Apps and Agents**: An AI-database powering retrieval-augmented generation (RAG) and intelligent agents. [Learn More](https://spiceai.org/docs/use-cases/rag).
32
33:::info[Watch 🎥]
34
35- [CMU Databases - Accelerating Data and AI with Spice.ai Open-Source](https://www.youtube.com/watch?v=tyM-ec1lKfU)
36- [Query Data using Spice, OpenAI, and MCP](https://www.youtube.com/watch?v=TFAu4qxjTPk&list=PLesJrUXEx3U-dQul0PqLV3TGTdUmr3B6e&index=8)
37- [Search with Amazon S3 Vectors](https://www.youtube.com/watch?v=QPbqPf5W36g)
38 :::
39
40Spice is built on industry-leading technologies including [Apache DataFusion](https://datafusion.apache.org), Apache Arrow, Arrow Flight, SQLite, and DuckDB. If you want to build with DataFusion or DuckDB, Spice provides a simple, flexible, and production-ready engine.
41
42<div style={{ display: 'flex', justifyContent: 'center' }}>
43 <ThemeBasedImage
44 width='600'
45 alt='How Spice works'
46 lightSrc='https://github.com/spiceai/spiceai/assets/80174/7d93ae32-d6d8-437b-88d3-d64fe089e4b7'
47 darkSrc='https://github.com/spiceai/spiceai/assets/80174/7d93ae32-d6d8-437b-88d3-d64fe089e4b7'
48 />
49</div>
50
51:::info[Announcement 📣]
52Read the [Spice.ai 1.0-stable announcement](https://spiceai.org/blog/announcing-1.0-stable).
53:::
54
55## Why Spice?
56
57Spice simplifies building data-driven AI applications and agents by enabling fast, SQL-based querying, federation, and acceleration of data from multiple sources, grounding AI in real-time, reliable data. Co-locate datasets with apps and AI models to power AI feedback loops, enable RAG and search, and deliver low-latency data queries and AI inference with full control over cost and performance.
58
59<div style={{ display: 'flex', justifyContent: 'center' }}>
60 <ThemeBasedImage
61 width='800'
62 alt='Spice.ai'
63 lightSrc='https://github.com/spiceai/spiceai/assets/80174/29e4421d-8942-4f2a-8397-e9d4fdeda36b'
64 darkSrc='https://github.com/spiceai/spiceai/assets/80174/96b5fcef-a550-4ce8-a74a-83931275e83e'
65 />
66</div>
67
68### How is Spice different?
69
701. **AI-Native Runtime**: Combines data query and AI inference in a single engine for data-grounded, accurate AI.
712. **Application-Focused**: Designed for distributed deployment at the application or agent level, often as a 1:1 or 1:N mapping, unlike centralized databases serving multiple apps. Multiple Spice instances can be deployed, even one per tenant or customer.
723. **Dual-Engine Acceleration**: Supports **OLAP** (Arrow/DuckDB) and **OLTP** (SQLite/PostgreSQL) engines at the dataset level for flexible performance across analytical and transactional workloads.
734. **Disaggregated Storage**: Separates compute from storage, co-locating materialized working datasets with applications, dashboards, or ML pipelines while accessing source data in its original storage.
745. **Edge to Cloud Native**: Deploy as a standalone instance, Kubernetes sidecar, microservice, or cluster across edge, on-prem, and public clouds. Chain multiple Spice instances for tier-optimized, distributed deployments.
75
76## How does Spice compare?
77
78### Data Query and Analytics
79
80| Feature | **Spice** | Trino / Presto | Dremio | ClickHouse | Materialize |
81| -------------------------------- | -------------------------------------- | -------------------- | --------------------- | ------------------- | -------------------- |
82| **Primary Use-Case** | Data & AI apps/agents | Big data analytics | Interactive analytics | Real-time analytics | Real-time analytics |
83| **Primary Deployment Model** | Sidecar | Cluster | Cluster | Cluster | Cluster |
84| **Federated Query Support** | ✅ | ✅ | ✅ | ❌ | ❌ |
85| **Acceleration/Materialization** | ✅ (Arrow, SQLite, DuckDB, PostgreSQL) | Intermediate storage | Reflections (Iceberg) | Materialized views | ✅ (Real-time views) |
86| **Catalog Support** | ✅ (Iceberg, Unity Catalog, AWS Glue) | ✅ | ✅ | ❌ | ❌ |
87| **Query Result Caching** | ✅ | ✅ | ✅ | ✅ | Limited |
88| **Multi-Modal Acceleration** | ✅ (OLAP + OLTP) | ❌ | ❌ | ❌ | ❌ |
89| **Change Data Capture (CDC)** | ✅ (Debezium) | ❌ | ❌ | ❌ | ✅ (Debezium) |
90
91### AI Apps and Agents
92
93| Feature | **Spice** | LangChain | LlamaIndex | AgentOps.ai | Ollama |
94| ----------------------------- | ------------------------------------ | ------------------ | ---------- | ---------------- | ----------------------------- |
95| **Primary Use-Case** | Data & AI apps | Agentic workflows | RAG apps | Agent operations | LLM apps |
96| **Programming Language** | Any language (HTTP interface) | JavaScript, Python | Python | Python | Any language (HTTP interface) |
97| **Unified Data + AI Runtime** | ✅ | ❌ | ❌ | ❌ | ❌ |
98| **Federated Data Query** | ✅ | ❌ | ❌ | ❌ | ❌ |
99| **Accelerated Data Access** | ✅ | ❌ | ❌ | ❌ | ❌ |
100| **Tools/Functions** | ✅ (MCP HTTP+SSE) | ✅ | ✅ | Limited | Limited |
101| **LLM Memory** | ✅ | ✅ | ❌ | ✅ | ❌ |
102| **Evaluations (Evals)** | ✅ | Limited | ❌ | Limited | ❌ |
103| **Search** | ✅ (Keyword, Vector, Full-Text) | ✅ | ✅ | Limited | Limited |
104| **Caching** | ✅ (Query and results caching) | Limited | ❌ | ❌ | ❌ |
105| **Embeddings** | ✅ (Built-in & pluggable models/DBs) | ✅ | ✅ | Limited | ❌ |
106
107✅ = Fully supported
108❌ = Not supported
109Limited = Partial or restricted support
110
111## Example Use-Cases
112
113### Data-Grounded Agentic AI Applications
114
115- **OpenAI-Compatible API**: Connect to hosted models (OpenAI, Anthropic, xAI) or deploy locally (Llama, NVIDIA NIM). [AI Gateway Recipe](https://github.com/spiceai/cookbook/blob/trunk/openai_sdk/README.md)
116- **Federated Data Access**: Query using SQL and NSQL (text-to-SQL) across databases, data warehouses, and data lakes with advanced query push-down. [Federated SQL Query Recipe](https://github.com/spiceai/cookbook/blob/trunk/federation/README.md)
117- **Search and RAG**: Perform keyword, vector, and full-text search with Tantivy-powered BM25 and vector similarity search (VSS) integrated into SQL queries using `vector_search` and `text_search`. Supports multi-column vector search with reciprocal rank fusion. [Amazon S3 Vectors Recipe](https://github.com/spiceai/cookbook/blob/trunk/vectors/s3/README.md)
118- **LLM Memory and Observability**: Store and retrieve history and context for AI agents with visibility into data flows, model performance, and traces. [LLM Memory Recipe](https://github.com/spiceai/cookbook/blob/trunk/llm-memory/README.md) | [Observability Documentation](https://spiceai.org/docs/features/observability)
119
120### Database CDN and Query Mesh
121
122- **Data Acceleration**: Co-locate materialized datasets in Arrow, SQLite, or DuckDB for sub-second queries. [DuckDB Data Accelerator Recipe](https://github.com/spiceai/cookbook/blob/trunk/duckdb/accelerator/README.md)
123- **Resiliency and Local Dataset Replication**: Maintain availability with local replicas of critical datasets. [Local Dataset Replication Recipe](https://github.com/spiceai/cookbook/blob/trunk/localpod/README.md)
124- **Responsive Dashboards**: Enable fast, real-time analytics for frontends and BI tools. [Sales BI Dashboard Demo](https://github.com/spiceai/cookbook/blob/trunk/sales-bi/README.md)
125- **Simplified Legacy Migration**: Unify legacy systems with modern infrastructure via federated SQL querying. [Federated SQL Query Recipe](https://github.com/spiceai/cookbook/blob/trunk/federation/README.md)
126
127### Retrieval-Augmented Generation (RAG)
128
129- **Unified Search with Vector Similarity**: Perform efficient vector similarity search across structured and unstructured data, with native support for Amazon S3 Vectors for petabyte-scale storage and querying. Supports distance metrics like cosine similarity, Euclidean distance, or dot product. [Amazon S3 Vectors Recipe](https://github.com/spiceai/cookbook/blob/trunk/vectors/s3/README.md)
130- **Semantic Knowledge Layer**: Define a semantic context model to enrich data for AI. [Semantic Model Documentation](/docs/features/semantic-model)
131- **Text-to-SQL**: Convert natural language queries into SQL using built-in NSQL and sampling tools. [Text-to-SQL Recipe](https://github.com/spiceai/cookbook/blob/trunk/text-to-sql/README.md)
132- **Model and Data Evaluations**: Assess model performance and data quality with integrated evaluation tools. [Language Model Evaluations Recipe](https://github.com/spiceai/cookbook/blob/trunk/evals/README.md)
133
134## FAQ
135
136- **Is Spice a cache?** No, but its data acceleration acts as an active cache, materialization, or prefetcher. Unlike traditional caches that fetch on miss, Spice prefetches and materializes filtered data on intervals, triggers, or via CDC. It also supports [results caching](https://spiceai.org/docs/features/caching).
137- **Is Spice a CDN for databases?** Yes, Spice enables shipping working datasets to where they're accessed most, like data-intensive applications or AI contexts, similar to a CDN. [Docs FAQ](/docs/faq)
138
139### Watch a 30-second BI dashboard acceleration demo
140
141<div style={{ display: 'flex', justifyContent: 'center', marginBottom: '15px' }}>
142 <ReactPlayer
143 controls
144 url='https://www.youtube.com/watch?v=t3B2AyshVY0&list=PLesJrUXEx3U-dQul0PqLV3TGTdUmr3B6e&index=1&pp=gAQBiAQB'
145 />
146</div>
147
148See more demos on [YouTube](https://www.youtube.com/playlist?list=PLesJrUXEx3U9anekJvbjyyTm7r9A26ugK).
149
150### Intelligent Applications and Agents
151
152Spice enables developers to build data-grounded AI applications and agents by co-locating data and ML models with applications. Read more about the vision for [intelligent AI-driven applications](/docs/intelligent-applications).
153
154### Connect with Us
155
156- Build with Spice and share feedback at [hey@spice.ai](mailto:hey@spice.ai), [Slack](https://spiceai.org/slack), [X](https://twitter.com/spice_ai), or [LinkedIn](https://www.linkedin.com/company/74148478).
157- [File an issue](https://github.com/spiceai/spiceai/issues/new) for bugs or issues.
158- Join our team ([We're hiring!](https://spice.ai/careers)).
159- Contribute code or documentation ([CONTRIBUTING.md](https://github.com/spiceai/spiceai/blob/trunk/CONTRIBUTING)).
160- ⭐️ Star the [Spice.ai repo](https://github.com/spiceai/spiceai) to show support!
161
1---
2sidebar_position: 0
3title: Home
4---
5
6import ReactPlayer from 'react-player'
7import ThemeBasedImage from '@site/src/components/ThemeBasedImage'
8
9# Spice.ai Open Source
10
11**Spice** is a SQL query, search, and LLM-inference engine, written in Rust, for data-driven applications and AI agents.
12
13
14
15Spice provides four industry-standard APIs in a lightweight, portable runtime (single ~140 MB binary):
16
171. **SQL Query & Search APIs**: Supports HTTP, Arrow Flight, Arrow Flight SQL, ODBC, JDBC, ADBC, and `vector_search` and `text_search` UDTFs.
182. **OpenAI-Compatible APIs**: Provides HTTP APIs for OpenAI SDK compatibility, local model serving (CUDA/Metal accelerated), and hosted model gateway.
193. **Iceberg Catalog REST APIs**: Offers a unified API for Iceberg Catalog.
204. **MCP HTTP+SSE APIs**: Enables integration with external tools via Model Context Protocol (MCP) using HTTP and Server-Sent Events (SSE).
21
22:::tip[Goal 🎯]
23Developers can focus on building data apps and AI agents confidently, knowing they are grounded in data.
24:::
25
26Spice is primarily used for:
27
28- **Data Federation**: SQL query across any database, data warehouse, or data lake. [Learn More](https://spiceai.org/docs/features/query-federation).
29- **Data Materialization and Acceleration**: Materialize, accelerate, and cache database queries. [Read the MaterializedView interview - Building a CDN for Databases](https://materializedview.io/p/building-a-cdn-for-databases-spice-ai).
30- **Enterprise Search**: Keyword, vector, and full-text search with Tantivy-powered BM25 and vector similarity search for structured and unstructured data. [Learn More](https://github.com/spiceai/cookbook/blob/trunk/vectors/s3/README.md).
31- **AI Apps and Agents**: An AI-database powering retrieval-augmented generation (RAG) and intelligent agents. [Learn More](https://spiceai.org/docs/use-cases/rag).
32
33:::info[Watch 🎥]
34
35- [CMU Databases - Accelerating Data and AI with Spice.ai Open-Source](https://www.youtube.com/watch?v=tyM-ec1lKfU)
36- [Query Data using Spice, OpenAI, and MCP](https://www.youtube.com/watch?v=TFAu4qxjTPk&list=PLesJrUXEx3U-dQul0PqLV3TGTdUmr3B6e&index=8)
37- [Search with Amazon S3 Vectors](https://www.youtube.com/watch?v=QPbqPf5W36g)
38 :::
39
40Spice is built on industry-leading technologies including [Apache DataFusion](https://datafusion.apache.org), Apache Arrow, Arrow Flight, SQLite, and DuckDB. If you want to build with DataFusion or DuckDB, Spice provides a simple, flexible, and production-ready engine.
41
42<div style={{ display: 'flex', justifyContent: 'center' }}>
43 <ThemeBasedImage
44 width='600'
45 alt='How Spice works'
46 lightSrc='https://github.com/spiceai/spiceai/assets/80174/7d93ae32-d6d8-437b-88d3-d64fe089e4b7'
47 darkSrc='https://github.com/spiceai/spiceai/assets/80174/7d93ae32-d6d8-437b-88d3-d64fe089e4b7'
48 />
49</div>
50
51:::info[Announcement 📣]
52Read the [Spice.ai 1.0-stable announcement](https://spiceai.org/blog/announcing-1.0-stable).
53:::
54
55## Why Spice?
56
57Spice simplifies building data-driven AI applications and agents by enabling fast, SQL-based querying, federation, and acceleration of data from multiple sources, grounding AI in real-time, reliable data. Co-locate datasets with apps and AI models to power AI feedback loops, enable RAG and search, and deliver low-latency data queries and AI inference with full control over cost and performance.
58
59<div style={{ display: 'flex', justifyContent: 'center' }}>
60 <ThemeBasedImage
61 width='800'
62 alt='Spice.ai'
63 lightSrc='https://github.com/spiceai/spiceai/assets/80174/29e4421d-8942-4f2a-8397-e9d4fdeda36b'
64 darkSrc='https://github.com/spiceai/spiceai/assets/80174/96b5fcef-a550-4ce8-a74a-83931275e83e'
65 />
66</div>
67
68### How is Spice different?
69
701. **AI-Native Runtime**: Combines data query and AI inference in a single engine for data-grounded, accurate AI.
712. **Application-Focused**: Designed for distributed deployment at the application or agent level, often as a 1:1 or 1:N mapping, unlike centralized databases serving multiple apps. Multiple Spice instances can be deployed, even one per tenant or customer.
723. **Dual-Engine Acceleration**: Supports **OLAP** (Arrow/DuckDB) and **OLTP** (SQLite/PostgreSQL) engines at the dataset level for flexible performance across analytical and transactional workloads.
734. **Disaggregated Storage**: Separates compute from storage, co-locating materialized working datasets with applications, dashboards, or ML pipelines while accessing source data in its original storage.
745. **Edge to Cloud Native**: Deploy as a standalone instance, Kubernetes sidecar, microservice, or cluster across edge, on-prem, and public clouds. Chain multiple Spice instances for tier-optimized, distributed deployments.
75
76## How does Spice compare?
77
78### Data Query and Analytics
79
80| Feature | **Spice** | Trino / Presto | Dremio | ClickHouse | Materialize |
81| -------------------------------- | -------------------------------------- | -------------------- | --------------------- | ------------------- | -------------------- |
82| **Primary Use-Case** | Data & AI apps/agents | Big data analytics | Interactive analytics | Real-time analytics | Real-time analytics |
83| **Primary Deployment Model** | Sidecar | Cluster | Cluster | Cluster | Cluster |
84| **Federated Query Support** | ✅ | ✅ | ✅ | ❌ | ❌ |
85| **Acceleration/Materialization** | ✅ (Arrow, SQLite, DuckDB, PostgreSQL) | Intermediate storage | Reflections (Iceberg) | Materialized views | ✅ (Real-time views) |
86| **Catalog Support** | ✅ (Iceberg, Unity Catalog, AWS Glue) | ✅ | ✅ | ❌ | ❌ |
87| **Query Result Caching** | ✅ | ✅ | ✅ | ✅ | Limited |
88| **Multi-Modal Acceleration** | ✅ (OLAP + OLTP) | ❌ | ❌ | ❌ | ❌ |
89| **Change Data Capture (CDC)** | ✅ (Debezium) | ❌ | ❌ | ❌ | ✅ (Debezium) |
90
91### AI Apps and Agents
92
93| Feature | **Spice** | LangChain | LlamaIndex | AgentOps.ai | Ollama |
94| ----------------------------- | ------------------------------------ | ------------------ | ---------- | ---------------- | ----------------------------- |
95| **Primary Use-Case** | Data & AI apps | Agentic workflows | RAG apps | Agent operations | LLM apps |
96| **Programming Language** | Any language (HTTP interface) | JavaScript, Python | Python | Python | Any language (HTTP interface) |
97| **Unified Data + AI Runtime** | ✅ | ❌ | ❌ | ❌ | ❌ |
98| **Federated Data Query** | ✅ | ❌ | ❌ | ❌ | ❌ |
99| **Accelerated Data Access** | ✅ | ❌ | ❌ | ❌ | ❌ |
100| **Tools/Functions** | ✅ (MCP HTTP+SSE) | ✅ | ✅ | Limited | Limited |
101| **LLM Memory** | ✅ | ✅ | ❌ | ✅ | ❌ |
102| **Evaluations (Evals)** | ✅ | Limited | ❌ | Limited | ❌ |
103| **Search** | ✅ (Keyword, Vector, Full-Text) | ✅ | ✅ | Limited | Limited |
104| **Caching** | ✅ (Query and results caching) | Limited | ❌ | ❌ | ❌ |
105| **Embeddings** | ✅ (Built-in & pluggable models/DBs) | ✅ | ✅ | Limited | ❌ |
106
107✅ = Fully supported
108❌ = Not supported
109Limited = Partial or restricted support
110
111## Example Use-Cases
112
113### Data-Grounded Agentic AI Applications
114
115- **OpenAI-Compatible API**: Connect to hosted models (OpenAI, Anthropic, xAI) or deploy locally (Llama, NVIDIA NIM). [AI Gateway Recipe](https://github.com/spiceai/cookbook/blob/trunk/openai_sdk/README.md)
116- **Federated Data Access**: Query using SQL and NSQL (text-to-SQL) across databases, data warehouses, and data lakes with advanced query push-down. [Federated SQL Query Recipe](https://github.com/spiceai/cookbook/blob/trunk/federation/README.md)
117- **Search and RAG**: Perform keyword, vector, and full-text search with Tantivy-powered BM25 and vector similarity search (VSS) integrated into SQL queries using `vector_search` and `text_search`. Supports multi-column vector search with reciprocal rank fusion. [Amazon S3 Vectors Recipe](https://github.com/spiceai/cookbook/blob/trunk/vectors/s3/README.md)
118- **LLM Memory and Observability**: Store and retrieve history and context for AI agents with visibility into data flows, model performance, and traces. [LLM Memory Recipe](https://github.com/spiceai/cookbook/blob/trunk/llm-memory/README.md) | [Observability Documentation](https://spiceai.org/docs/features/observability)
119
120### Database CDN and Query Mesh
121
122- **Data Acceleration**: Co-locate materialized datasets in Arrow, SQLite, or DuckDB for sub-second queries. [DuckDB Data Accelerator Recipe](https://github.com/spiceai/cookbook/blob/trunk/duckdb/accelerator/README.md)
123- **Resiliency and Local Dataset Replication**: Maintain availability with local replicas of critical datasets. [Local Dataset Replication Recipe](https://github.com/spiceai/cookbook/blob/trunk/localpod/README.md)
124- **Responsive Dashboards**: Enable fast, real-time analytics for frontends and BI tools. [Sales BI Dashboard Demo](https://github.com/spiceai/cookbook/blob/trunk/sales-bi/README.md)
125- **Simplified Legacy Migration**: Unify legacy systems with modern infrastructure via federated SQL querying. [Federated SQL Query Recipe](https://github.com/spiceai/cookbook/blob/trunk/federation/README.md)
126
127### Retrieval-Augmented Generation (RAG)
128
129- **Unified Search with Vector Similarity**: Perform efficient vector similarity search across structured and unstructured data, with native support for Amazon S3 Vectors for petabyte-scale storage and querying. Supports distance metrics like cosine similarity, Euclidean distance, or dot product. [Amazon S3 Vectors Recipe](https://github.com/spiceai/cookbook/blob/trunk/vectors/s3/README.md)
130- **Semantic Knowledge Layer**: Define a semantic context model to enrich data for AI. [Semantic Model Documentation](/docs/features/semantic-model)
131- **Text-to-SQL**: Convert natural language queries into SQL using built-in NSQL and sampling tools. [Text-to-SQL Recipe](https://github.com/spiceai/cookbook/blob/trunk/text-to-sql/README.md)
132- **Model and Data Evaluations**: Assess model performance and data quality with integrated evaluation tools. [Language Model Evaluations Recipe](https://github.com/spiceai/cookbook/blob/trunk/evals/README.md)
133
134## FAQ
135
136- **Is Spice a cache?** No, but its data acceleration acts as an active cache, materialization, or prefetcher. Unlike traditional caches that fetch on miss, Spice prefetches and materializes filtered data on intervals, triggers, or via CDC. It also supports [results caching](https://spiceai.org/docs/features/caching).
137- **Is Spice a CDN for databases?** Yes, Spice enables shipping working datasets to where they're accessed most, like data-intensive applications or AI contexts, similar to a CDN. [Docs FAQ](/docs/faq)
138
139### Watch a 30-second BI dashboard acceleration demo
140
141<div style={{ display: 'flex', justifyContent: 'center', marginBottom: '15px' }}>
142 <ReactPlayer
143 controls
144 url='https://www.youtube.com/watch?v=t3B2AyshVY0&list=PLesJrUXEx3U-dQul0PqLV3TGTdUmr3B6e&index=1&pp=gAQBiAQB'
145 />
146</div>
147
148See more demos on [YouTube](https://www.youtube.com/playlist?list=PLesJrUXEx3U9anekJvbjyyTm7r9A26ugK).
149
150### Intelligent Applications and Agents
151
152Spice enables developers to build data-grounded AI applications and agents by co-locating data and ML models with applications. Read more about the vision for [intelligent AI-driven applications](/docs/intelligent-applications).
153
154### Connect with Us
155
156- Build with Spice and share feedback at [hey@spice.ai](mailto:hey@spice.ai), [Slack](https://spiceai.org/slack), [X](https://twitter.com/spice_ai), or [LinkedIn](https://www.linkedin.com/company/74148478).
157- [File an issue](https://github.com/spiceai/spiceai/issues/new) for bugs or issues.
158- Join our team ([We're hiring!](https://spice.ai/careers)).
159- Contribute code or documentation ([CONTRIBUTING.md](https://github.com/spiceai/spiceai/blob/trunk/CONTRIBUTING)).
160- ⭐️ Star the [Spice.ai repo](https://github.com/spiceai/spiceai) to show support!
161