Metadata-Version: 2.1
Name: django-polly
Version: 0.0.5
Summary: A Django app for building parrot configurations
Home-page: https://github.com/pollystack/django-polly
Author: Pollystack Team
Author-email: info@pollystack.com
License: AGPL-3.0
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: Django>=4.0
Requires-Dist: requests
Requires-Dist: tqdm
Requires-Dist: django-json-widget
Requires-Dist: djangorestframework
Requires-Dist: drf-spectacular
Requires-Dist: llama-cpp-python==0.2.87
Requires-Dist: channels[daphne]
Requires-Dist: asgiref
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-django; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: pytest-asyncio; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-django; extra == "test"
Requires-Dist: pytest-asyncio; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: tox; extra == "test"
Requires-Dist: coverage; extra == "test"

Django Polly
============

.. image:: https://img.shields.io/pypi/v/django-polly.svg?color=blue
    :target: https://pypi.python.org/pypi/django-polly
    :alt: PyPI Version

.. image:: https://img.shields.io/badge/License-AGPL--3.0-blue.svg
    :target: https://www.gnu.org/licenses/agpl-3.0
    :alt: License

.. image:: https://img.shields.io/pypi/pyversions/django-polly.svg
    :target: https://pypi.python.org/pypi/django-polly
    :alt: Python Versions

.. image:: https://readthedocs.org/projects/django-polly/badge/?version=latest
    :target: https://django-polly.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. image:: https://github.com/pollystack/django-polly/actions/workflows/tests.yml/badge.svg
    :target: https://github.com/pollystack/django-polly/actions/workflows/tests.yml
    :alt: Tests

.. image:: https://github.com/pollystack/django-polly/actions/workflows/publish-to-pypi.yml/badge.svg
    :target: https://github.com/pollystack/django-polly/actions/workflows/publish-to-pypi.yml
    :alt: Publish Python 🐍 distribution 📦 to PyPI


Django Polly enhances Django with Language Learning Model (LLM) capabilities, enabling AI-powered conversations, task automation, and other intelligent features in your Django projects. It uses familiar Django patterns and provides a flexible framework for customizing AI behaviors and supporting various LLM backends.

Features
--------

* **LLM Management**: Create and configure LLM instances (parrots)
* **SmartConversations**: Engage in AI-powered conversations
* **WebSocket Support**: Real-time communication for chat interfaces
* **Admin Interface**: Easily manage parrots and conversations
* **Extensible**: Designed to work with various LLM backends

Screenshots
-----------

Django Admin Parrot UI
^^^^^^^^^^^^^^^^^^^^^^

.. image:: https://raw.githubusercontent.com/pollystack/django-polly/main/docs/images/admin_parrot_ui.png
   :alt: Django Admin Parrot UI
   :width: 600px

Smart Conversations Table UI
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. image:: https://raw.githubusercontent.com/pollystack/django-polly/main/docs/images/smart_conversations_ui.png
   :alt: Smart Conversations Table UI
   :width: 600px

Smart Chat UI
^^^^^^^^^^^^^

.. image:: https://raw.githubusercontent.com/pollystack/django-polly/main/docs/images/smart_chat_ui.png
   :alt: Smart Chat UI
   :width: 600px

Usage
-----

Smart Chat UI
^^^^^^^^^^^^^

To interact with Parrots in real-time using the built-in Chat UI, navigate to:

``https://[hostname:port]/polly/smart-gpt-chat/<int:conversation_id>``

Replace ``[hostname:port]`` with your server's hostname and port, and ``<int:conversation_id>`` with the ID of the conversation you want to interact with.

Documentation
-------------

For full documentation, visit: https://django-polly.readthedocs.io

Quick Start
-----------

1. Install django-polly and its dependencies:

   .. code-block:: bash

       pip install django-polly

2. Add "django_polly" and its dependencies to your INSTALLED_APPS setting in settings.py:

   .. code-block:: python

       INSTALLED_APPS = [
           'daphne',  # Add this before all django apps
           'django.contrib.admin',
           'django.contrib.auth',
           'django.contrib.contenttypes',
           'django.contrib.sessions',
           'django.contrib.messages',
           'django.contrib.staticfiles',
           'django_polly',  # Add this after all django apps
           'rest_framework', # Required for API views
           'django_json_widget', # Required for JSON widget in admin (optional)
           # ... your other apps ...
       ]

3. Configure ASGI in your project's asgi.py:

   .. code-block:: python

       import os
       from django.core.asgi import get_asgi_application
       from channels.routing import ProtocolTypeRouter
       from django_polly.routing import polly_asgi_routes

       os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'your_project.settings')

       # Get the Django ASGI application
       django_asgi_app = get_asgi_application()

       # Use the Django ASGI application for HTTP requests
       polly_asgi_routes["http"] = django_asgi_app

       # Create the final ASGI application
       application = ProtocolTypeRouter(polly_asgi_routes)

4. Update your settings.py with the following:

   .. code-block:: python

       # Add this to specify the ASGI application
       ASGI_APPLICATION = 'your_project.asgi.application'
       WSGI_APPLICATION = 'your_project.wsgi.application'

       # Add this for daphne
       CHANNEL_LAYERS = {
           'default': {
               'BACKEND': 'channels.layers.InMemoryChannelLayer'
           }
       }

       AI_MODELS_PATH = BASE_DIR / 'ai_models' # Add this to specify the path to store AI models

5. Include the django-polly URLconf in your project urls.py:

   .. code-block:: python

       from django.contrib import admin
       from django.urls import path, include

       urlpatterns = [
           path('admin/', admin.site.urls),
           path('polly/', include('django_polly.urls')),
           # ... other URL patterns ...
       ]

6. Run migrations:

   .. code-block:: bash

       python manage.py migrate

7. Download an AI model (example using Qwen2):

   .. code-block:: bash

       python manage.py download_model "Qwen2-500M-Instruct-Q8_0.gguf" "https://huggingface.co/lmstudio-community/Qwen2-500M-Instruct-GGUF/resolve/main/Qwen2-500M-Instruct-Q8_0.gguf"

8. Start the development server:

   .. code-block:: bash

       python manage.py runserver

   Visit http://127.0.0.1:8000/admin/ to create parrots and http://127.0.0.1:8000/polly/ to use django-polly.

Dependencies
------------

Django Polly supports Python 3.8 and up, and is compatible with Django 4.2 and 5.0.

Contributing
------------

We welcome contributions! To learn more about contributing, please read our `contributing docs <https://django-polly.readthedocs.io/en/latest/contributing.html>`_.

Support
-------

If you're having issues, please let us know by opening an issue on our `GitHub repository <https://github.com/pollystack/django-polly/issues>`_.

For larger discussions, join our `mailing list <mailto:oss@pollystack.com>`_.

License
-------

The project is licensed under the AGPL-3.0 license.
