ottoai 0.0.5

Last updated:

0 purchases

ottoai 0.0.5 Image
ottoai 0.0.5 Images
Add to Cart

Description:

ottoai 0.0.5

Otto: The minimalistic Framework to build AI Assistants
Welcome to Otto, the most minimalistic library for building intelligent AI Assistants, adept for also handling multitenancy and secure authentication.
pip install ottoai

Example
Turn the Github SDK into an agent that can answer questions from Github live data using pandas to calculate results.
import ottoai
import openai
import pandas

from github import Github, Auth


# create an assistant
eve = ottoai.Assistant(name="eve", personality="Like Scarlett Johansson with John Oliver's wits", llm_engine=openai, model="gpt-4")

# Make your agent capable of answering questions and do all things Github, by simply passing the sdk module
# Remember. Just pass objects as skills, and Otto will figure out the rest.
eve.add_skill(Github)
eve.add_skill(pandas)

# Start a conversation and add user specific context (variable names must be interpretable, Otto will take care of the rest)
# In this case the assistant will need access token to github, this is so you can pass context dynamically (solving for multitenancy)
conversation = eve.start_conversation(user_name = "Bob", user_context_variables = {"github_api_token":"sometoken"} )

# ask a question
response = conversation.message("Who were the last 5 people to star the mindsdb/otto repo?")

As simple as that, no need to build tools or chaining, just pass objects as skills, otto figures out the rest.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.