Building tools that use AI by building tools that AIs use.
Project description
Daring Mechanician is a Python library for building tools that use AI by building tools that AIs use.
The approach of providing tools to Generative AIs to use can be described as Tool Augmented Generation (TAG) and the Generative AIs that use tools as Tool Augmented Generative AIs (TAG AIs).
Daring Mechanician provides tools for building, testing, and tuning TAG AIs and the tools that these AIs use, including support for AI-driven testing and AI-assisted tuning of the instruction sets given to an AI that we call Instruction Auto-Tuning (IAT).
Tool Augmented Generation (TAG)
The Tool Augmented Generation (TAG) approach provides AIs with external tools, databases, and interfaces to enhance their knowledge, capabilities, and interaction with other systems.
This approach leverages the "Function Calling", or "Tool Calling", capabilities available in several Large Language Models and is meant to complement other approaches to augmenting Foundation Models, like Fine Tuning (FT) and Retrieval Augmented Generation (RAG).
In contrast to Retrieval Augmented Generation (RAG), which uses a knowledge base to retrieve information and augment the prompt sent to the AI, Tool Augmented Generation (TAG) provides the AI with tools so that it can retrieve information itself, and also perform actions across multiple systems, databases, and interfaces.
NOTE: You can build a RAG application using a TAG AI to create a RAGTAG AI Application.
Foundation Models are inherently limited by the scope of their training data and the static nature of that data, Tool Augmented Generative AI can access up-to-date information, perform computations, and interact with external systems; extending Generative AIs from pure knowledge repositories to active participants in information processing and generation.
This approach enhances the AI's problem-solving skills, creativity, and ability to provide accurate, up-to-date information.
Designing Tools for AIs to Use
TAG AIs can be observed to problem solve, learning to use tools effectively through feedback provided by the tools themselves, so it is necessary for the tools to provide effective feedback, often through natural language, when reporting errors or providing results.
AIs will learn from their mistakes and successes, if the tools provide feedback that the AI can learn from.
See Getting Started with Daring Mechanician for an example of how to use the Tool Augmented Generation (TAG) approach to build a Movie Database Assistant.
Instruction Tuning (IT)
In addition to learning from the feedback provided by the tools they use, TAG AIs can learn from the feedback they receive from users.
But since TAG AIs do not necessarily undergo further training, or Fine Tuning, that permanently encodes what they learned, they can only learn within the context window where feedback is received, and must start from scratch during the next session.
In order to make these learned behaviors persistent, they must be captured through a process of Instruction Tuning, where the initial instructions provided to the AI, the instructions provided for the tools the AI can use, and the feedback provided by those tools are revised and improved, incorporating lessons learned during interactions with users.
This process starts with creating an initial set of AI Instructions, Tool Instructions, and Tool Feedback, that are used to guide the AI's behavior and responses, and then iteratively refining those instructions and tool feedback based on the AI's performance during interactions with users.
At the start of this process, the prompting provided to the AI often consists of explict and detailed steps, but as the process proceeds, it is often discoverd that the AI does not need such detailed prompting, and that more general prompts can be used to guide the AI's behavior, and it will work out the details on its own.
In order to speed up this process, it is useful to use an Evaluator AI that acts as an user surrogate, interactively eliciting responses from the AI as the two work through multi-step tasks.
Instruction Auto-Tuning (IAT)
By observing an AI's interactions with users and other AIs, an Instructor AI can refine and update the AI's current instructions and the instructions describing the tools the AI can use.
The Instructor AI is provided the AI's current set of instructions, instructions for the tools used by the AI, and the transcript of interactions between the AI and a User (or Evaluator AI), including the AI tool calls and responses.
See Getting Started with Instruction Auto-Tuning for an example of how to use the Instruction Auto-Tuning (IAT) process to refine the instructions for a Movie Database Assistant.
AI-Driven Testing
See Getting Started with AI-Driven Testing for an example of how to use the AI-Driven Testing process to test a Movie Database Assistant.
Getting Started Guide: Table of Contents
- Getting Started with Daring Mechanician
- Getting Started with Instruction Auto-Tuning
- Getting Started with AI-Driven Testing
- Getting Started with Mechanician ArangoDB
- Getting Started with the TMDb Example
- Getting Started with the Arango Movie Database Example
- Parallel Tool Calls and Streaming Responses
Getting Started with Daring Mechanician
Daring Mechanician consists of the following packages:
- mechanician: the core package for building and running Tool Augmented Generative AI (TAG AI) programs.
- mechanician-openai: provides connectors to the OpenAI Chat API and the OpenAI Assistants API.
- mechanician-arangodb: provides tools for interacting with the ArangoDB graph database.
In the future, it will include packages for interacting with different LLM APIs and systems.
You will need to install mechanician-openai in order to run any of the example projects.
You can install it using pip:
pip install mechanician-openai
or you can clone this repo and install the latest version:
cd ./packages/mechanician-openai
./scripts/install.sh
The examples directory contains examples of Tool Augmented Generative AI projects.
-
examples/tmdb is an example of a Movie Database Assistant that uses the OpenAI Chat API to answer questions about movies and their casts and crews.
-
examples/arango_movie_db is an example of a Movie Database Assistant that uses the ArangoDB to record information on movies, their casts, and reviews.
TAGAI Class
The TAGAI class is used to create instance of a Tool Augmented Generative AI (TAG AI).
from mechanician import TAGAI
ai = TAGAI(ai_connector=ai_connector,
ai_instructions=ai_instructions,
tool_instructions=tool_instructions,
tools=tools)
Alternatively, you can pass an instruction_set_directory to the constructor, and it will load the the ai_instructions and tool_instructions from the designated directory.
ai = TAGAI(ai_connector=OpenAIChatConnector(),
instruction_set_directory="./instructions",
tools=tools)
The TAGAI class takes the following parameters:
- AIConnector: Provides a connection to a LLM API, such as the OpenAI Chat API or the OpenAI Assistants API.
- AITools: Provides a set of tools that the AI can use to interact with other systems, databases, and interfaces.
- Instruction Set Directory: The directory containing the instruction for the TAG AI, describing its role and behaviors, and the instructions for the tools used by the AI.
Here are some examples of how to use the TAGAI class:
-
mechanician_tmdb/main.py: a TAG AI that uses
TMDbAIToolsfor interacting with the The Movie Database (TMDb) API, theOpenAIChatConnectorto connect to the OpenAI Chat API. -
examples/arango_movie_db/main.py: a TAG AI that uses
DocumentManagerAIToolsfrom themechanician-arangodbpackage to interact with the ArangoDB graph database and theOpenAIChatConnectorto connect to the OpenAI Chat API. -
mechanician/instruction_tuning.py: an Instructor AI that uses
AutoTuningAIToolsfor tuning and updating the instructions for another AI, and theOpenAIChatConnectorto connect to the OpenAI Chat API.
AITools Abstract Class
The AITools class is the base class used to create AI tools.
from mechanician import AITools
class ExampleAITools(AITools):
def example_tool1(self, parameters):
...
Each tool method intended to be called by an AI takes a single parameter, a dict of input parameters, and returns a JSON serializable object.
These methods should fail gracefully, returning an error message if the tool call fails, and should provide detailed feedback to the AI about the results of the tool call.
Examples of AITools classes:
-
tmdb_tools.py:
AIToolsfor interacting with The Movie Database (TMDb) API. -
arango_movie_db_tools.py:
AIToolsfor interacting with the ArangoDB graph database. -
auto_tuning_ai_tools.py:
AIToolsfor tuning and updating the instructions for another AI.
Instruction Sets
If you pass an instruction_set_directory to the TAGAI constructor, it will load the the ai_instructions and tool_instructions from the designated directory.
ai = TAGAI(ai_connector=OpenAIChatConnector(),
instruction_set_directory="./instructions",
tools=tools)
The default name and location of the directory is ./instructions, and the default names for the instruction files are ai_instructions.md and tool_instructions.json.
Alternatively, you can pass the ai_instructions and tool_instructions directly to the TAGAI constructor.
ai = TAGAI(ai_connector=ai_connector,
ai_instructions=ai_instructions,
tool_instructions=tool_instructions,
tools=tools)
The advantage of storing the instruction in the instruction_set_directory is that it allows you to use the Instruction Auto-Tuning (IAT) process to refine the instructions for the AI.
-
The
ai_instructions.jsonfile contains the instructions for the AI, defining its role and behaviors. -
The
tool_instructions.jsonfile contains the instructions for the tools used by the AI. In the case of the OpenAI Connectors, it contains JSON Schema describing the tools and their parameters.
{
"tool1": {
"name": "tool1",
"description": "Tool 1 Description",
"parameters": {
"parameter1": {
"name": "parameter1",
"description": "Parameter 1 Description"
}
}
}
}
Some example instruction sets:
AIConnector Classes
The AIConnector class is used to create a connection to a LLM API. There are currently connectors for OpenAI's Chat API and OpenAI's Assistants API.
The roadmap includes connectors to other LLM APIs that support function calling, including connectors for local LLMs.
OpenAI Connectors
pip install mechanician-openai
OPENAI_API_KEY=<YOUR_OPENAI_API_KEY_HERE>
OPENAI_MODEL_NAME=gpt-4-0125-preview
OpenAIChatConnector
from mechanician_openai import OpenAIChatConnector
OpenAIAssistantsConnector
from mechanician_openai import OpenAIAssistantsConnector
export USE_OPENAI_ASSISTANTS_API = True
export ASSISTANT_ID=<YOUR_ASSISTANT_ID_HERE>
export CREATE_NEW_ASSISTANT=False
export DELETE_ASSISTANT_ON_EXIT=False
or create a .env file with the variables.
Running the AI
from mechanician import shell
shell.run(ai)
Getting Started with Instruction Auto-Tuning
See the arango_movie_db example to see how to use the Instruction Auto-Tuning (IAT) process to refine the instructions for a Movie Database Assistant.
Use the TAGAI's save_tuning_session method to save the current tuning session, and then use the auto_tune.sh script to run the Instructor AI and start the an interactive instruction auto-tuning process.
ai.save_tuning_session()
./script/auto_tune.sh
Use the /file chat command to load the tuning session into the Instructor AI.
> /file ./tuning_sessions/tuning_session.json
It will begin by evaluating the AI's performance and describing its errors and successes, and then creating a revised draft of the AI's instructions and the tool, and tool parameter instructions, to improve the AI's performance. If the updated instruction set is satisfactory, you can ask the Instructor to commit the changes.
> commit the revisions.
The Instructor's evaluations of the Assistant's performance can be really useful, as are it's recommended changes to the instructions, but sometimes its revisions will only include instructions covering the errors it determined the Assistant made, and you may want to add additional instructions to cover other cases; you can do this by manually editing the draft instructions before commiting them or by asking the Instructor to make further revisions.
You can edit the draft instructions before commiting them, and you can also ask the Instructor AI to make further revisions.
Getting Started with AI-Driven Testing
AI Q&A Program Tests
from mechanician.testing import QandATest, run_q_and_a_evaluations
import unittest
class TestAI(unittest.TestCase):
def test_ai(self):
ai = init_ai()
evaluator_at = init_evaluator_ai()
tests = [QandATest(prompt="What is the name of the actor playing the titular character in the upcoming Furiosa movie?",
expected="Anya Taylor-Joy"),
QandATest(prompt="What is the name of the actor plays Ken in the Barbie movie?",
expected="Ryan Gosling"),
QandATest(prompt="Who played Barbie?",
expected="Margot Robbie"),
QandATest(prompt="What is the first movie that the actor that plays the titual character in the upcoming Furiosa movie?",
expected="The Witch")]
results, messages = run_q_and_a_evaluations(ai, tests, evaluator_ai)
for result in results:
self.assertEqual(result.evaluation, "PASS")
Examples of AI-Driven Q&A Tests:
AI Task Evaluations
from mechanician.testing import run_task_evaluation
import unittest
class TestAI(unittest.TestCase):
def test_ai(self):
ai = init_ai()
evaluator_at = init_evaluator_ai()
evaluation, messages = run_task_evaluation(ai, evaluator_ai)
self.assertEqual(evaluation, "PASS")
Examples of AI-Driven Task Evaluations:
Run AI-Driven Tests
$ python test.py
Getting Started with Mechanician ArangoDB
pip install mechanician-arangodb
ARANGO_ROOT_PASSWORD=<YOUR_ARANGO_DATABASE_PASSWORD>
ARANGO_HOST=http://localhost:8529
Run ArangoDB in Docker
docker pull arangodb/arangodb
docker run -e ARANGO_ROOT_PASSWORD=${ARANGO_ROOT_PASSWORD} -p 8529:8529 -d --name arangodb-instance arangodb/arangodb
docker stop arangodb-instance
docker start arangodb-instance
./run.sh
./test.sh
from mechanician_arangodb import DocumentManagerAITools
from arango import ArangoClient
arango_client = ArangoClient(hosts=os.getenv("ARANGO_HOST"))
doc_tools = DocumentManagerAITools(arango_client, database_name=database_name)
ai = TAGAI(ai_connector=ai_connector,
instruction_set_directory="./instructions",
tools=doc_tools,
name="Movie Document Manager AI")
Getting Started with the TMDb Example
export TMDB_API_KEY=<YOUR_TMDB_API_KEY>
export TMDB_READ_ACCESS_TOKEN=<YOUR_READ_ACCESS_TOKEN>
./install.sh
./run.sh
./test.sh
Example Interaction
> what was the first movie that the actor that plays Furiosa in the upcoming movie Furiosa star in?
Calling external function: search_movie...
Calling external function: get_movie_by_id...
Calling external function: get_movie_credits...
Calling external function: get_actor_credits...
The first movie that Anya Taylor-Joy, the actor who plays Furiosa in the upcoming movie "Furiosa: A Mad Max Saga," starred in was "The Witch," where she played the character Thomasin. The film was released in 2015.
>
TMDb Example Code
-
examples/tmdb/main.py: shows how to use Daring Mechanician to interact with OpenAI's Chat API, providing it with tools that can be used by the LLM to makes callouts to other programs. -
tmdb_tool_schemas.py: informs the LLM what tools are available to it. -
tmdb_tools.py: is function_handler containingstubfunctions that are invoked when the LLM makes one or moretool_callrequests. -
examples/tmdb/instructions.md: is a set of instructions for the LLM that inform it of the tools available to it, and describe its role as a Movie Database Assistant that answers questions about movies and their casts and crews. -
tmdb_example_prompts.md: provides a variety of approaches to interacting with the LLM. -
examples/tmdb/test.py: shows how to test Daring Mechanician programs by having the AI self-evaluate their responses given a testing rubric.
Getting Started with the Arango Movie Database Example
./install.sh
./run.sh
./test.sh
Arango Movie Database Example Code
-
mechanician_arangodb document_ai_tools.py: are the AITools available to the AI. -
examples/arango_movie_db/instructions/instructions.json: is a set of instructions for the AI that inform it of the tools available to it, and describe its role as a Movie Database Assistant that records information on movies, their casts, and reviews. -
example_prompts.md: provides a variety of approaches to interacting with the AI. -
examples/arango_movie_db/test_ai.py: shows how to test Daring Mechanician programs by having an AI-driven set of tasks.
Parallel Tool Calls and Streaming Responses
It currently supports OpenAI's Chat API and OpenAI's Assistants API, and specifically supports OpenAI's Function Calling, a.k.a.tool_calls, while streaming responses from the Chat API.
Each tool_call will be executed in a ThreadExecutor as soon as it has completely streamed to the client, allowing it to perform IO-bound calls while other tool_calls continue to stream to the client.
Environment Variables
export CALL_TOOLS_IN_PARALLEL=True
export MAX_THREAD_WORKERS=50
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 mechanician-0.1.1.tar.gz.
File metadata
- Download URL: mechanician-0.1.1.tar.gz
- Upload date:
- Size: 20.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59101480cff9b4ef5e8ca601c7f4621a1e34708a6ed2437e0618f7401e9240f2
|
|
| MD5 |
ad243a94cfdcc2954619e8d30ed8f433
|
|
| BLAKE2b-256 |
811eef1568966cb4c14ef5228bc1b01102d46941f0c3d286ed7ec5cb016908b5
|
File details
Details for the file mechanician-0.1.1-py3-none-any.whl.
File metadata
- Download URL: mechanician-0.1.1-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bebc84062fc91dcef9ad5944d04b2210c6ae58d6af0a37b43893e759b2380f8
|
|
| MD5 |
64e54f49f477f8e4d126137a7069e48a
|
|
| BLAKE2b-256 |
961a2d8c6d3c304f3eb139f221d2dd17e7fa1e41017ebecb43b9b220630eb50c
|