Django AI Core Documentation
Django AI Core provides a set of tools for implementing AI-powered features in to your Django sites. It currently includes tools for indexing and searching content in vector databases and building/running AI agents.
Quick Start
Installation
Basic Setup
Add django_ai_core to INSTALLED_APPS, along with any contrib modules you need:
django_ai_core.contrib.index- vector indexing and searching across your datadjango_ai_core.contrib.agents- register AI agents that can do some AI tasks
Run migrations:
Read More
- Core - on using the core module to access low-level AI tooling
- Index Module - on indexing your data for similarity search and for powering RAG applications
- Agent Module - on creating AI tools that can be triggered from other parts of your app