Skip to main content

llama-index agent coa integration

Project description

LlamaIndex Agent Integration: Coa

Chain-of-Abstraction Agent Pack

pip install llama-index-agent-coa

The chain-of-abstraction (CoA) agent integration implements a generalized version of the strategy described in the origin CoA paper.

By prompting the LLM to write function calls in a chain-of-thought format, we can execute both simple and complex combinations of function calls needed to execute a task.

The LLM is prompted to write a response containing function calls, for example, a CoA plan might look like:

After buying the apples, Sally has [FUNC add(3, 2) = y1] apples.
Then, the wizard casts a spell to multiply the number of apples by 3,
resulting in [FUNC multiply(y1, 3) = y2] apples.

From there, the function calls can be parsed into a dependency graph, and executed.

Then, the values in the CoA are replaced with their actual results.

As an extension to the original paper, we also run the LLM a final time, to rewrite the response in a more readable and user-friendly way.

NOTE: In the original paper, the authors fine-tuned an LLM specifically for this, and also for specific functions and datasets. As such, only capabale LLMs (OpenAI, Anthropic, etc.) will be (hopefully) reliable for this without finetuning.

A full example notebook is also provided.

Code Usage

pip install llama-index-agent-coa

First, setup some tools (could be function tools, query engines, etc.)

from llama_index.core.tools import QueryEngineTool, FunctionTool


def add(a: int, b: int) -> int:
    """Add two numbers together."""
    return a + b


query_engine = index.as_query_engine(...)

function_tool = FunctionTool.from_defaults(fn=add)
query_tool = QueryEngineTool.from_defaults(
    query_engine=query_engine, name="...", description="..."
)

Next, create the pack with the tools, and run it!

from llama_index.packs.agent.coa import CoAAgentPack
from llama_index.llms.openai import OpenAI

pack = CoAAgentPack(
    tools=[function_tool, query_tool], llm=OpenAI(model="gpt-4")
)

print(pack.run("What is 1245 + 4321?"))

See the example notebook for more thorough details.

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

llama_index_agent_coa-0.3.0.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

llama_index_agent_coa-0.3.0-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file llama_index_agent_coa-0.3.0.tar.gz.

File metadata

  • Download URL: llama_index_agent_coa-0.3.0.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.10 Darwin/22.3.0

File hashes

Hashes for llama_index_agent_coa-0.3.0.tar.gz
Algorithm Hash digest
SHA256 f7a299301774fb341434f1defa42f9e5f26ff99b3dddb1b902fc016826401134
MD5 bdc612014c4260a4e9d94ea38d4192ac
BLAKE2b-256 1edc7640bafa7d7adc3de7bcc4021a5ea06cc1030566d2bd262e925bd24fb060

See more details on using hashes here.

File details

Details for the file llama_index_agent_coa-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for llama_index_agent_coa-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ffb87cd3917eabdf1cba3a3a305e2eda4fe38daffb62a580eb85016158705602
MD5 9bdc2e7b280daf49f4f55f6bce9321ab
BLAKE2b-256 5bd7d15b76d1726f3a61b8a598853eb6191a6bf98ff2cfb4ed20c750a20a017e

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