Skip to main content

The easiest way to build AI agents in Python

Project description

Axcent

The easiest way to build AI agents in Python.

Axcent is a lightweight framework designed to let you build powerful AI agents with tool calling, context caching, and multi-backend support in just a few lines of code.

Installation

pip install axcent

To use Gemini models:

pip install axcent[gemini]

Quick Start (OpenAI)

import os
from axcent import Agent

# Set your API Key
os.environ["OPENAI_API_KEY"] = "sk-..."

# Initialize Agent
agent = Agent(system_prompt="You are a helpful assistant.")

# Register a Tool
@agent.tool
def get_weather(city: str) -> str:
    """Returns weather info for a city."""
    return f"The weather in {city} is sunny!"

# Ask away!
response = agent.ask("What is the weather in Tokyo?")
print(response)

Features

  • Simple Tool Registration: Just use @agent.tool.
  • Automatic Context Caching: Optimizes token usage by enforcing stable prompt structures.
  • Token Monitoring: Track prompt, completion, and cached tokens via agent.get_total_usage().
  • Multimodal Support: Process images and audio with the Transcriber class.
  • Backend Agnostic:
    • OpenAI: First-class support with vision.
    • Google Gemini: Support for all latest models including multimodal.
    • OpenRouter: Use any model via OpenRouter API compatibility.

Multimodal: Images & Audio

Axcent v0.3.0 introduces multimodal capabilities. Use the Transcriber class to let your agent "see" images and "hear" audio.

from axcent import Agent, Transcriber
from axcent.llm import GeminiBackend

agent = Agent(system_prompt="You are a helpful assistant.")

@agent.tool
def see_media(path: str) -> str:
    """Analyze an image or audio file."""
    transcriber = Transcriber(
        system_prompt="Describe this media briefly.",
        backend=GeminiBackend()
    )
    return transcriber.transcribe_file(path)

# Now the agent can understand media files!
response = agent.ask("What's in /path/to/image.jpg?")

You can also send images/audio directly with ask():

from axcent import Agent, Image

agent = Agent(model="gpt-4o")  # Vision-capable model
img = Image(url="https://example.com/photo.jpg")
response = agent.ask("What's in this image?", media=[img])

Multi-Backend Usage

Google Gemini

from axcent import Agent, GeminiBackend
import os

# Set API Key (or GOOGLE_API_KEY)
os.environ["GEMINI_API_KEY"] = "AIza..."

# Use Gemini Backend (uses google-genai V2 SDK)
backend = GeminiBackend(model="gemini-3-flash")
agent = Agent(system_prompt="You are a helper.", backend=backend)

OpenRouter

import os
from axcent import Agent

os.environ["OPENAI_API_KEY"] = "sk-or-..."
os.environ["OPENAI_BASE_URL"] = "https://openrouter.ai/api/v1"

agent = Agent(system_prompt="You are a helper.")

License

MIT

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

axcent-0.3.1.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

axcent-0.3.1-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file axcent-0.3.1.tar.gz.

File metadata

  • Download URL: axcent-0.3.1.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for axcent-0.3.1.tar.gz
Algorithm Hash digest
SHA256 c06d8eab996ab6528a7d1c1e63a7f7f71b06588d765495622ca4edaa1eca84e9
MD5 d755d45d9de7f3ecd9b16018a77979db
BLAKE2b-256 d29a85d01ce3241d0610abd29f0cd7b231d0a31c01c7619db1b513d405cd1180

See more details on using hashes here.

File details

Details for the file axcent-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: axcent-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for axcent-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5b91636ba4de366704b6eba0eb3ffdf3e4ea719a49c2d4a2eac12461622c1897
MD5 f28cfc7f8d4f81a808a952971bb1240a
BLAKE2b-256 9c881120db1686bd428a69d5569843bae10a88c90868af953dc220781a7f0343

See more details on using hashes here.

Supported by

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