Skip to main content

A Python package for creating simple AI Agents using the OpenAI API.

Project description

jAIms

My name is Bot, jAIMs Bot. 🕶️

jAIms is a lightweight Python framework built on top of the OpenAI library that lets you create powerful LLM agents. It is designed with simplicity and ease of use in mind and only depends on openai, tiktoken and Pillow.

Installation

pip install jaims-py

👨‍💻 Usage

Building an agent is as simple as this:

from jaims import JAImsAgent

agent = JAImsAgent()

response = agent.run([
    {
        "role": "user",
        "content": "Hi!"
    }
])

print(response)

⚙️ Functions

Of course, an agent is just a chatbot if it doesn't support functions. jAIms uses the built-in OpenAI tools feature to call the functions you pass to it. Here's an example where we create a simple sum function and make a simple agent that lets you sum two numbers:

import jaims


def sum(a: int, b: int):
    return a + b

# this is a class that wraps your function, it will 
# receive the actual function plus all the info required 
# by the llm to invoke it.
func_wrapper = JAImsFuncWrapper(
    function=sum, 
    name="sum", 
    description="use this function when the user wants to sum two numbers",
    params_descriptors=[
        JAImsParamDescriptor(
            name="a",
            description="first operand",
            json_type=JAImsJsonSchemaType.NUMBER,
        ),
        JAImsParamDescriptor(
            name="b",
            description="second operand",
            json_type=JAImsJsonSchemaType.NUMBER,
        ),
    ],
)

# instantiate the agent passing the functions
agent = JAImsAgent(
        openai_kwargs=JAImsOpenaiKWArgs(
            model=JAImsGPTModel.GPT_4,
            tools=[
                func_wrapper,
            ],
        ),
    )
# a simple loop that simulates a chatbot
while True:
    user_input = input("> ")
    if user_input == "exit":
        break
    response = agent.run(
        [{"role": "user", "content": user_input}],
    )

    for chunk in response:
        print(chunk, end="", flush=True)
        
        print("\n")

✨ Other features

  • Complete control over openai call parameters.
  • Automatic chat history management
  • Configuration of the OpenAI model to use
  • Injectable prompt to shape agent behavior
  • Safety checks to prevent the agent from endlessly looping over function calls

I will routinely update the examples to demonstrate more advanced features. Also, I've made sure to document the code as best as I can; everything should be self-explanatory; I plan to add a proper documentation in the future if this project gets enough traction.

🤖 Supported models

Currently, jAIms supports the new OpenAI models with functions enabled, specifically:

  • gpt-3.5-turbo-0613
  • gpt-3.5-turbo-16k-0613
  • gpt-4-0613
  • gpt-4-32k-0613
  • gpt-4-1106-preview
  • gpt-4-vision-preview

I'm not planning to add support for non-OpenAI models at the moment, but contributions are always appreciated.

⚠️ Project status

This is a work in progress. I still need to write some tests and add many features, but the core functionality is there. I'm creating this framework because I need a lightweight and easy-to-use framework to create LLM agents. This project may not be as advanced as tools like langchain and others, but if you need a simple tool to create agents based on the OpenAI API, you might find jAIms useful.

TODOS:

  • Add tests
  • Add more examples
  • Add more chat history optimization strategies
  • Add function calling callbacks
  • Add history persistance

📝 License

The license will be MIT, but I need to add this properly.

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

jaims-py-1.0.7.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

jaims_py-1.0.7-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file jaims-py-1.0.7.tar.gz.

File metadata

  • Download URL: jaims-py-1.0.7.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for jaims-py-1.0.7.tar.gz
Algorithm Hash digest
SHA256 a4f26e41d488c94f159a42d1514a1c62d3c8254d7ae7d638fc8f84fd900a42c9
MD5 7d9adb058c2da7a36954d3b1a0efca42
BLAKE2b-256 951596f4571b5bac43c895eca187885f2b4fd000f405506d5e8038be098110a3

See more details on using hashes here.

File details

Details for the file jaims_py-1.0.7-py3-none-any.whl.

File metadata

  • Download URL: jaims_py-1.0.7-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for jaims_py-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 89c945442811477cd0ede8741449938d6a53977a51e3be3cf78d2b3ba4b3881a
MD5 c0a19d1f7ffc1f62f9f2208827b522d8
BLAKE2b-256 d3b9e0dfc928c4b7baf3e1f45fe0e8fd54ad611b85a920d10a2631faa509a48c

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