Skip to main content

Agent Framework MLX

This library provides an Apple MLX LM backend for the Agent Framework. It allows you to run Language Models locally on macOS with Apple Silicon using the mlx-lm library.

Features

  • Local Inference: Run models directly on your Mac using Apple Silicon
  • Tool Calling: Native support for agentic tool invocation.
  • Observability: Built-in OpenTelemetry tracing, metrics, and token usage tracking.
  • Streaming Support: Full support for streaming responses.
  • Configurable Generation: Fine-tune generation parameters like temperature, top-p, repetition penalty, and more.
  • Message Preprocessing: Hook into the pipeline to modify messages before they are converted to prompts.
  • Agent Framework Integration: Seamlessly plugs into the Agent Framework's BaseChatClient interface.

Installation

Ensure you have Python 3.9+ and are running on macOS with Apple Silicon.

pip install agent-framework-mlx

Or install from source:

git clone https://github.com/filipw/agent-framework-mlx.git
cd agent-framework-mlx
pip install -e .

Usage

Basic Example

import asyncio
from agent_framework import ChatMessage, Role, ChatOptions
from agent_framework_mlx import MLXChatClient, MLXGenerationConfig

# Initialize the client
client = MLXChatClient(
    model_path="mlx-community/Phi-4-mini-instruct-4bit",
    generation_config=MLXGenerationConfig(
        temp=0.7,
        max_tokens=500
    )
)

# Create messages
messages = [
    ChatMessage(role=Role.SYSTEM, text="You are a helpful assistant."),
    ChatMessage(role=Role.USER, text="Why is the sky blue?")
]

# Get response
response = await client.get_response(messages=messages)
print(response.text)

Agent with Tools

You can easily create agents capable of calling tools (Python functions) using the client:

from typing import Annotated

def calculate_bmi(weight: float, height: float) -> str:
    """Calculates BMI."""
    return f"{weight / (height ** 2):.2f}"

# Create an agent with the tool
agent = client.as_agent(
    name="HealthAssistant",
    instructions="You are a helpful assistant.",
    tools=[calculate_bmi]
)

response = await agent.run("Calculate BMI for 70kg and 1.75m")
print(response)

Workflow Integration

You can use the client as backbone for Agent Framework agents when building agentic workflows:

from agent_framework import ChatAgent

# notice the client constructed in the previous example now backs the local agent
local_agent = client.as_agent(
    name="Local_MLX",
    instructions="You are a helpful assistant."
)

remote_agent = ChatAgent(
    name="Cloud_LLM",
    instructions="You are a fallback expert. The previous assistant was unsure. Provide a complete answer.",
    chat_client=azure_client
)

builder = WorkflowBuilder()
builder.set_start_executor(local_agent)

builder.add_edge(
    source=local_agent,
    target=remote_agent,
    condition=should_fallback_to_cloud
)

workflow = builder.build()

Streaming

async for update in client.get_streaming_response(messages=messages):
    print(update.text, end="", flush=True)

Configuration

You can configure the client using environment variables or a .env file. Using environment variables like MLX_MODEL_PATH allows you to omit arguments in code.

export MLX_MODEL_PATH="mlx-community/Phi-4-mini-instruct-4bit"
# No arguments needed if env vars are set
client = MLXChatClient()

Advanced Configuration

You can configure generation parameters globally via MLXGenerationConfig or per-request via MLXChatOptions.

config = MLXGenerationConfig(
    temp=0.7,
    top_p=0.9,
    repetition_penalty=1.1,
    seed=42
)

Message Preprocessing

You can intercept and modify messages before they are sent to the model. This is useful for injecting instructions or formatting content.

def inject_instruction(messages):
    if messages:
        messages[-1]["content"] += "\nIMPORTANT: Be concise."
    return messages

client = MLXChatClient(
    model_path="...",
    message_preprocessor=inject_instruction
)

Requirements

  • macOS
  • Apple Silicon
  • Python 3.9+

License

This project is licensed under the MIT License. See the LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agent_framework_mlx-0.7.0.tar.gz (15.3 kB view details)

Uploaded Source

Built Distribution

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

agent_framework_mlx-0.7.0-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

Details for the file agent_framework_mlx-0.7.0.tar.gz.

File metadata

  • Download URL: agent_framework_mlx-0.7.0.tar.gz
  • Upload date:
  • Size: 15.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for agent_framework_mlx-0.7.0.tar.gz
Algorithm Hash digest
SHA256 a83d6ff4ba27136e50136b37675f540173e5c4108ae00198f6fd7e5031330fef
MD5 cf8f2b17a92236a9caadb29738c8da34
BLAKE2b-256 add69ba7bb6eaa9bd7be6950a048b70fd2d7bb05328cd6cfa7cb53a75cf419a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_framework_mlx-0.7.0.tar.gz:

Publisher: publish.yml on filipw/agent-framework-mlx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agent_framework_mlx-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for agent_framework_mlx-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0fa1d5852e3a9aa4bf262740e2204f3a41d9524c3756f234153a75d338f3790f
MD5 365423c42a0591604c00da8533f8b142
BLAKE2b-256 b3a65a1ca9119c461d6366ce3a7ff37a17ee3a40c4edfff4bf045fb08d793a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_framework_mlx-0.7.0-py3-none-any.whl:

Publisher: publish.yml on filipw/agent-framework-mlx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.7.0 This release

2 files

0.6.0

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page