A Django app for connecting RoboOp-powered chatbots to the web.
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.BBBot' # 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 start 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 django_botbench import BBBot
class EnthusiasticBot(BBBot):
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 considerations
Notice that we've used a couple of attributes on the EnthusasticBot class which aren't mentioned in the RoboOp Cookbook, because they're not applicable to the CLI-oriented usage context.
welcome_messageis 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_startis related - when the first message in the conversation is sent by the user, ifsoft_startis set then theConversationhistory will start with thewelcome_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.
We're also deriving the EnthusiasticBot not from the base class robo.Bot but rather from django_botbench.BBBot. BBBot (as in "BotBench Bot") adds a method for deriving the bot's field arguments from the Django Websocket's scope object, namely derive_field_args_from_scope. For example:
class GreeterBot(BBBot):
sysprompt_text = """You are a helpful greeter. If you know the user's first name you
greet them by name at the start of the conversation and then
incorporate their name into each subsequent message. Besides that,
you generally help them with any enquiries they have.
The user's first name is "{{USER_FIRST_NAME}}"."""
fields = ['USER_FIRST_NAME']
def derive_field_args_from_scope(self, scope):
try:
user_firstname = scope['user'].first_name
except Exception as exc:
user_firstname = 'UNKNOWN'
return {'USER_FIRST_NAME': user_firstname}
This bot will greet the user by name if they're logged in and their first_name field is set.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_botbench-0.1.4.tar.gz.
File metadata
- Download URL: django_botbench-0.1.4.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4430a5847545af0bec8b612955486f6fe38758819b2a2703a38b937386c2d2a5
|
|
| MD5 |
73a98be3c20f1c9cba2e95b48530d30c
|
|
| BLAKE2b-256 |
c939b7b787cb0845a40e3977188ab49612baa0e10d2ba491c24f5961d85b3f0b
|
File details
Details for the file django_botbench-0.1.4-py3-none-any.whl.
File metadata
- Download URL: django_botbench-0.1.4-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59a4ddb5e916869f53ec9a9516b5871b6de2f2174a6f418f8b893ef6d626cb96
|
|
| MD5 |
43ba6e17e8be863274eaa0c38c7f69eb
|
|
| BLAKE2b-256 |
b8f373915f5d08d1266ec9e3f9780f6073a2b5a26f8728f34564688ecf84610d
|