Skip to content

Get started

Prerequisites

  • Python: Supported Python versions
  • Django: Supported Django versions

How to install

Install Django AI Assistant package:

pip install django-ai-assistant

Add Django AI Assistant to your Django project's INSTALLED_APPS:

myproject/settings.py
INSTALLED_APPS = [
    ...
    'django_ai_assistant',
    ...
]

Run the migrations:

python manage.py migrate

Learn how to use the package in the Tutorial section.