Skip to main content

A Django app for integrating RoboOp-powered chat sessions.

Project description

BotBench

BotBench is a sister project to RoboOp - a microframework for rapid development of Claude-powered agents, applications and assistants. If you haven't had a look at RoboOp yet, go do that now to get a sense of what's possible, and be sure and check out the Cookbook! :)

BotBench offers handy boilerplate to plug RoboOp bots into the web via a Django app that can embed iframe-based chat sessions in webpages. Or you can just use it as a web-based frontend to RoboOp. Note that it's currently fairly experimental - it's not considered production-ready and may not yet play nicely with other websocket-based Django applications.

Setting up

To set up a development environment with Botbench, start by installing into your Django project's virtualenv (or that of a fresh Django project if you just want to use the frontend without adding it to an existing project):

pip install django-botbench

In the settings.py:

INSTALLED_APPS = [
    'daphne',
    'django_botbench',
    # ... existing installed apps here
]

...

ASGI_APPLICATION = '<your-project-name>.asgi.application'

CHANNEL_LAYERS = {
    "default": {
        "BACKEND": "channels_redis.core.RedisChannelLayer",
        "CONFIG": {
            "hosts": [("127.0.0.1", 6379)]
        },
    },
}

BOTBENCH_BOT = 'django_botbench.bots.Bot' # a default Bot with no system prompt for quick start
BOTBENCH_CHATLOGS_DIR = BASE_DIR / 'chatlogs' # for conversation persistence

Make sure the path you nominated for BOTBENCH_CHATLOGS_DIR is a writable directory.

Then, in urls.py:

# ... existing imports
from django.urls import path, include
from django_botbench import views as bb_views

...

urlpatterns = [
    # ... existing URL patterns
    path('chat/', include('django_botbench.urls')),
    path('example/', bb_views.embed_example, name='embed_example'), # optional, see explanation below
 ]

The embed_example view gives an example of embedding an iframe-based chat box in a webpage. You can adapt this for pages on an existing site or just use it as-is for a quick way to get interacting with your bots.

Next, edit asgi.py:

# ... add the following lines to the end of asgi.py
from django_botbench.asgi import configure_asgi

application = configure_asgi(application)

Finally, you'll need a Redis (as alluded to in the CHANNEL_LAYERS config above). Easiest is to spin one up with Docker:

docker run --rm -p 6379:6379 redis:7

Now you should be good to launch the dev server -

# in your Django dir
./manage.py runserver

If you've used the above setup (and obtained and configured an Anthropic API key as per the RoboOp docs) then you should be able to navigate to http://localhost:8000/example/ and see a chatbox waiting for your input.

Using custom bots

You can pretty much set your custom bots up wherever you like as long as it's on the PYTHONPATH. Let's say you decide to add a bots.py to the top level of your Django project, like so:

# bots.py
from robo import Bot

class EnthusiasticBot(Bot):
    sysprompt_text = """You are an enthusiastic chatbot who is excited about everything and really 
                        enjoys using emojis in your chats with users."""
    welcome_message = """Hi there! What's cookin'?"""
    soft_start = True
    

You can then specify this chatbot from settings.py:

BOTBENCH_BOT = 'bots.EnthusiasticBot'

Or in the command environment when launching the development server:

BOTBENCH_BOT='bots.EnthusiasticBot' ./manage.py runserver

Frontend-specific Bot attributes

Notice that we've used a couple of attributes on the EnthusasticBot class which aren't mentioned in the Cookbook.

  • welcome_message is used to show a starting message in the chatbox. Note that this is not generated by the model (even though for UX reasons it comes in as chunks as if it were) - the model isn't engaged until a message is sent by the user.
  • soft_start is related - when the first message in the conversation is sent by the user, if soft_start is set then the conversation history will start with the welcome_message, which in effect "tricks" the model into thinking that it started the conversation by saying what's in the welcome message. This can help to set the tone (but your mileage may vary - tone should principally be the domain of the system prompt).

If you don't set a welcome message, then a default one will be displayed in the chatbox.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_botbench-0.1.0.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_botbench-0.1.0-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file django_botbench-0.1.0.tar.gz.

File metadata

  • Download URL: django_botbench-0.1.0.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.0

File hashes

Hashes for django_botbench-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4944c9dfeb93b1416c73e006cca3f90b035829fbeb0cfd9c9c962a5407428066
MD5 4ef23fd847bafdd23a4ce2ddc846a187
BLAKE2b-256 8b83580444d24a3bf589dc11179d345215abc494df2688fd5b1577e077d41757

See more details on using hashes here.

File details

Details for the file django_botbench-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_botbench-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5dbb6fd68598962d2de4b0fa5f2266c4394dae4857214dad2b7bee66fea71460
MD5 ddb991af15bc69dc49d36a71659f58d6
BLAKE2b-256 b95d35a46e37e8e10128881719ec3960a8476a1648d2fdc4bb1f9a0aeb14bac1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page