Skip to main content

A package to interact with generative AI and build specialized generative AI workflows. This project is dual-licensed under AGPL-3.0 and a separate commercial license.

Project description

OpenBrain

ci status ci status

PyPI - Version License: AGPL v3Ruff Code style: black Conventional Commits pre-commit Made with GH Actions semantic-release

Links

  • AI Agent Tuner:

    • A Gradio interface to create, test, save, and load sets of agent configurations.
    • Agent configurations allows your API calls to start sessions with a specific agent configuration (i.e. lead-bot, cold-caller, x-bot, etc.).

OpenBra.in Tuner

  • Demo Deployed Agent Page:

    • An example page that's using the agent from the public demo API.
    • This page uses an identity registered with OpenBrain Portal.
    • This page is using the OpenBrain API API to interact with LLMs.
    • This page is configured to use the client id openbrain and the profile called promoter, but it can, of course, use any stored agent configuration. The site is sending messages like this
      {
          "client_id": "openbrain",
          "profileName": "promoter",
          "message": "Hi, this is a message from the user talking through the website. I want to schedule an appointment or something."
      }
      

OpenBra.in Deployed Example

  • OpenBrain Portal:

    • Sign up for OpenBra.in as a service. Get an API key and start using the API.
    • This method does not require you to use the library or to deploy any infrastructure. Just grab an API key, and you can simply start with axios or the requests library (or whatever your language provides for making HTTP requests). OpenBra.in Portal

Openbrain as a Service

To test Openbrain as a service, do the following:

  1. Register at https://portal.openbra.in.
  2. Log in to the portal and subscribe to the Openbrain chat endpoint.
  3. Navigate to your dashboard in the portal to find and use your API keys.

NOTE: There is currently no fee for using the service, but it's using my personal AWS and OpenAI accounts, so I'll pull the plug immediately if it becomes expensive.

  • Interactive Agent Tuner: Integrates with deployable web interface ob-tuner.
  • Command-Line Interface: Use ob for quick completions and ob-chat for an interactive session.
  • Flexible Configuration: Customizable, persistent agent configurations.
  • Event-Driven Architecture: Tools that operate on the real world send events to the event bus.

AI Agent Tools

Context

OpenBrain agents can use tools, and those tools get input rom 2 sources: the agent's input values, and input values from "context". The "context" is any undocumented key/value pair. This is done in order to allow the agent to call tools that require sensitive information that we don't want the AI to have access to.

{
  "client_id": "me@email.com",    // OpenBrain parameter
  "reset": true,                  // OpenBrain parameter
  "message": "Do a barrel roll",  // OpenBrain parameter
  "email": "hotlead@public.com",  // context
  "firstName": "John",            // context
  "lastName": "Doe",              // context
  "phone": "555-555-5555"         // context
}

Tools

OpenBrain tools are categorized into 2 types: information retrieval tools, and action tools. Information retrieval tools are tools that get information from a 3rd party service or library and make that information available to the AI. Action tools, on the other hand, are tools that perform an action, such as updating a CRM, sending an email, etc. These "action tools" all operate in the same way, by taking the agent's input and context as input, and returning a creating an event on the the event mesh.

Tools need adaptors, so even action tools need OpenBrain support in order to make the AI aware of what input parameters these action tools require. Information retrieval tools, on the other hand, can not be implemented trivially using an event mesh, as the AI needs to be aware of the information that was retrieved immediately, so these tools are implemented directly in openBrain.

Generic Tools

These tools are available to all agents. Each tool is listed by name with a brief description of its functionality, and lists the required context keys.

  • get_current_time: Get the current time.
  • simple_calculator: Perform a simple calculation.

3rd party services

  • lls_scrub_phone_number: Get DNC information for a phone number.
    • api_key (optional): The API key for the LLS service. If not provided, the default key will be used from AWS Secrets Manager.

CRM support for Lead Momentum

  • leadmo_update_contact: Update a contact in Lead Momentum.
  • leadmo_stop_conversation: Stop a conversation in Lead Momentum.
  • leadmo_create_contact: Create a contact in Lead Momentum.
  • leadmo_delete_contact: Delete a contact in Lead Momentum.
  • leadmo_get_contact_details_from_context: Get contact details from this request's context to be made available to the AI.
  • leadmo_get_simple_calendar-appointment_slots: Get available appointment slots from Lead Momentum.
  • leadmo_create_appointment: Create an appointment in Lead Momentum.

Architecture Overview

Data Model

classDiagram
    class ChatMessage {
        + str: sessionId
        + str: clientId
        + str: message
        + AgentConfig: agentConfigOverrides
        + str: agentConfig
        + bool: reset
        + str: context...
    }

    class AgentConfig {
        + str: profileName
        + str: clientId
        + str: iceBreaker
        + Decimal: temperature
        + ...
        + save()
        + refresh()
        + get()
    }

    class ChatSession {
        + str: sessionId
        + str: clientId
        + byte: agentMemory
        + AgentConfig: agentConfig
        + save()
        + get()
    }


    ChatSession "1" *-- "1" AgentConfig: contains
    langchain_ChatMemory "1" *-- "1" ChatMessage: n messages ingested by agent, stored in memory
%%    ChatSession "1" *-- "*" ChatMessage: contains
    ChatSession "1" *-- "1" langchain_ChatMemory: from langchain, serialized

Data Flow diagram

OpenBrain uses an event driven architecture. The agent sends events to event bus and then the developer can simply write rules and targets for the incoming events once the targets are ready. The following diagram shows the data flow in two parts.

  1. The user interaction with the agent and the agent interaction with an event bus.
  2. The event bus and the targets that are triggered by the events.
sequenceDiagram
    title Agent Data Flow
    participant User
    create participant GPT Agent
    participant AgentConfigTable
    participant OpenAI
    participant Tool
    participant EventBus

    User ->> GPT Agent: (AgentConfig, AgentMemory, Lead, Email, InitialContext), ChatMessage
        GPT Agent -->> AgentConfigTable: profileName, clientId (on reset)
        AgentConfigTable -->> GPT Agent: AgentConfig (on reset)
        GPT Agent ->> GPT Agent: InitialContext, Email, Lead (on reset)  
        GPT Agent -->> OpenAI: ChatMessage (on chat)
        OpenAI -->> GPT Agent: ChatMessage (on chat)
        GPT Agent -->> Tool: Tool(Object, clientId) (on chat)
        Tool -->> EventBus: (Object, clientId, session_id, object_id)
        Tool -->> GPT Agent: ChatMessage (on chat)
    destroy GPT Agent
    GPT Agent ->> User: ChatMessage, (AgentConfig, AgentMemory), Object

  box blue Databases
      participant AgentConfigTable
  end
  box purple Tool
      participant Tool
  end

  box gray EventBus
      participant EventBus
  end

  box red Provider
      participant OpenAI
  end
sequenceDiagram
    title Example tool event data flow
    participant SQS
    participant EventBus
    participant Lambda
    participant ObjectTable
    participant AgentConfigTable
    participant ChatHistoryTable
    participant ExternalSite

    EventBus ->> Lambda: (Object, clientId, sessionId, objectId)
    Lambda -->> ObjectTable: (clientId, objectId)
    ObjectTable -->> Lambda: Object

    Lambda -->> AgentConfigTable: (profileName, clientId)
    ChatHistoryTable -->> Lambda: AgentConfig

    Lambda --> ChatHistoryTable: (clientId, sessionId)
    ChatHistoryTable -->> Lambda: (AgentMemory, AgentConfig)

    Lambda ->> ExternalSite: ...
    ExternalSite --x Lambda: ERROR
    Lambda ->> SQS: <DETAILS NEEDED TO RETRY>
    ExternalSite ->> Lambda: ...

    Lambda -> EventBus: <POTENTIAL NEW EVENT>

    box maroon DeadLetterQueue
        participant SQS
    end

    box blue Databases
        participant ObjectTable
        participant AgentConfigTable
        participant ChatHistoryTable
    end

    box gray EventBus
        participant EventBus
    end

    box brown EventTargets
        participant Lambda
    end

    box green Internet
        participant ExternalSite
    end

Contributing

See CONTRIBUTING.md for guidelines.

License

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

openbrain-4.5.2.tar.gz (45.7 kB view details)

Uploaded Source

Built Distribution

openbrain-4.5.2-py3-none-any.whl (62.5 kB view details)

Uploaded Python 3

File details

Details for the file openbrain-4.5.2.tar.gz.

File metadata

  • Download URL: openbrain-4.5.2.tar.gz
  • Upload date:
  • Size: 45.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/6.5.0-1024-azure

File hashes

Hashes for openbrain-4.5.2.tar.gz
Algorithm Hash digest
SHA256 dcc82adc6dfeaf478363d848455508c2de931d7abf5ba280ed98d1dc3fac05a5
MD5 0e605253a671660c362634433acfa105
BLAKE2b-256 c7c89b012c6076cdc3df82320ee0ff24b52f702b65196c75ee3eafbcfb0379cc

See more details on using hashes here.

File details

Details for the file openbrain-4.5.2-py3-none-any.whl.

File metadata

  • Download URL: openbrain-4.5.2-py3-none-any.whl
  • Upload date:
  • Size: 62.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/6.5.0-1024-azure

File hashes

Hashes for openbrain-4.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ff3e09b7f3e44ede852db0aebe975349c890c80e3f34aa629abdf35a70861089
MD5 f77873520330d7d2dfa99548816e72f4
BLAKE2b-256 1794fd2acc5a8248079a43cb0883ee6df4da507e4803c185845f625686fd0eeb

See more details on using hashes here.

Supported by

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