Skip to main content

The bloat moat! - A lightweight LLM and Agent interaction library

Project description

tests

Python Test Status codecov PyPI version Documentation Status Code style: black pre-commit License: MIT Contributor Covenant

🤺 Fence

The Bloat Moat! A lightweight, production-ready library for LLM communication and agentic workflows. Born from the need for something simpler than LangChain, Fence gives you powerful LLM orchestration without the heavyweight dependencies.

Think of it as the Swiss Army knife for LLM interactions—sharp, reliable, and it won't weigh down your backpack (or your Docker image).


🤔 Why Fence?

The short answer: By accident.

The slightly longer answer: LangChain used to be (is?) a pretty big package with a ton of dependencies. Great for PoCs, but in production? Not so much.

The problems we faced:

  • 🐘 It's BIG. Takes up serious space (problematic in Lambda, containers, edge environments)
  • 🌀 It's COMPLEX. Overwhelming for new users, hard to debug in production
  • 💥 It BREAKS. Frequent breaking changes, version jumps that made us cry

As a result, many developers (especially those in large production environments) started building lightweight, custom solutions that favor stability and robustness over feature bloat.

Enter Fence 🤺

We started building basic components from scratch for our Bedrock-heavy production environment. First came the Link class (wink wink), then templates, then agents... and before we knew it, we had a miniature package that was actually fun to use.

Fence strikes the perfect balance between convenience and flexibility.

Note: Fence isn't trying to replace LangChain for complex PoCs. But if you want a simple, lightweight, production-ready package that's easy to understand and extend, you're in the right place.


📦 Installation

pip install fence-llm

That's it. Seriously. No 500MB of transitive dependencies.


🚀 Quick Start

Hello World (The Obligatory Example)

from fence.links import Link
from fence.templates.string import StringTemplate
from fence.models.openai import GPT4omini

# Create a link
link = Link(
    model=GPT4omini(),
    template=StringTemplate("Write a haiku about {topic}"),
    name='haiku_generator'
)

# Run it
output = link.run(topic='fencing')['state']
print(output)

Output:

[2024-10-04 17:45:15] [ℹ️ INFO] [links.run:203]              Executing <haiku_generator> Link
Blades flash in the light,
En garde, the dance begins now,
Touch—victory's mine.

Much wow. Very poetry. 🎭


💪 What Can Fence Do?

Fence is built around a few core concepts that work together beautifully:

🤖 Multi-Provider LLM Support

Uniform interface across AWS Bedrock (Claude, Nova), OpenAI (GPT-4o), Anthropic, Google Gemini, Ollama, and Mistral. Switch models with a single line change.

👉 See all supported models →

🔗 Links & Chains

Composable building blocks that combine models, templates, and parsers. Chain them together for complex workflows.

👉 Learn about Links & Chains →

🤖 Agentic Workflows

The crown jewel! Production-ready agents using the ReAct pattern:

  • Agent - Classic ReAct with tool use and multi-level delegation
  • BedrockAgent - Native Bedrock tool calling with streaming
  • ChatAgent - Conversational agents for multi-agent systems

👉 Dive into Agents →

🔌 MCP Integration

First-class support for the Model Context Protocol. Connect to MCP servers and automatically expose their tools to your agents.

👉 Explore MCP Integration →

🎭 Multi-Agent Systems

Build collaborative agent systems with RoundTable where multiple agents discuss and solve problems together.

👉 Build Multi-Agent Systems →

🧠 Memory Systems

Persistent and ephemeral memory backends (DynamoDB, SQLite, in-memory) for stateful conversations.

👉 Configure Memory →

🛠️ Tools & Utilities

Custom tool creation, built-in tools, retry logic, parallelization, output parsers, logging callbacks, and benchmarking.

👉 Explore Tools & Utilities →


📚 Documentation


🎯 Examples

Simple Agent with Tools

from fence.agents import Agent
from fence.models.openai import GPT4omini
from fence.tools.math import CalculatorTool

agent = Agent(
    identifier="math_wizard",
    model=GPT4omini(source="demo"),
    tools=[CalculatorTool()],
)

result = agent.run("What is 1337 * 42 + 999?")
print(result)  # Agent thinks, uses calculator, and answers!

BedrockAgent with MCP

from fence.agents.bedrock import BedrockAgent
from fence.mcp.client import MCPClient
from fence.models.bedrock import Claude37Sonnet

# Connect to MCP server
mcp_client = MCPClient(
    transport_type="streamable_http",
    url="https://your-mcp-server.com/mcp"
)

# Create agent with MCP tools
agent = BedrockAgent(
    identifier="mcp_agent",
    model=Claude37Sonnet(region="us-east-1"),
    mcp_clients=[mcp_client],  # Tools auto-registered!
)

result = agent.run("Search for customer data")

Multi-Agent Collaboration

from fence.troupe import RoundTable
from fence.agents import ChatAgent
from fence.models.openai import GPT4omini

# Create specialized agents
detective = ChatAgent(
    identifier="Detective",
    model=GPT4omini(source="roundtable"),
    profile="You are a sharp detective."
)

scientist = ChatAgent(
    identifier="Scientist",
    model=GPT4omini(source="roundtable"),
    profile="You are a forensic scientist."
)

# Let them collaborate
round_table = RoundTable(agents=[detective, scientist])
transcript = round_table.run(
    prompt="A painting was stolen. Let's investigate!",
    max_rounds=3
)

More examples:


🤝 Contributing

We welcome contributions! Whether it's:

  • 🐛 Bug fixes
  • ✨ New features (especially new model providers!)
  • 📝 Documentation improvements
  • 🧪 More tests
  • 🎨 Better examples

Check out CONTRIBUTING.md for guidelines.


📄 License

MIT License - see LICENSE.txt for details.


🙏 Acknowledgments

Inspired by LangChain, built for production, made with ❤️ by developers who got tired of dependency hell.

Now go build something awesome! 🚀

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

fence_llm-2.3.2.tar.gz (160.3 kB view details)

Uploaded Source

Built Distribution

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

fence_llm-2.3.2-py3-none-any.whl (137.3 kB view details)

Uploaded Python 3

File details

Details for the file fence_llm-2.3.2.tar.gz.

File metadata

  • Download URL: fence_llm-2.3.2.tar.gz
  • Upload date:
  • Size: 160.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fence_llm-2.3.2.tar.gz
Algorithm Hash digest
SHA256 bafaa7bfd83fc7f0b7bc91228d3fb230c0e377dc8bcf7f2c8efda2da7591c316
MD5 582af7d36108e6c377edfab990accc99
BLAKE2b-256 0b7ce6fb62a34ed7f11319639731833f552dfc3dbe007b244ec2b668bbbe414e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fence_llm-2.3.2.tar.gz:

Publisher: publish-pipeline.yaml on WouterDurnez/fence

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

File details

Details for the file fence_llm-2.3.2-py3-none-any.whl.

File metadata

  • Download URL: fence_llm-2.3.2-py3-none-any.whl
  • Upload date:
  • Size: 137.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fence_llm-2.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 549a2d75b29453d66c11592a65106442aecfdbe4ab2eed3aee19fed716dcee4b
MD5 984ead087faa902fe146e5f99e221a48
BLAKE2b-256 e2e7833adbb600c0b7303e239a01de6b7916753ada73c5271a6250e78f3ad025

See more details on using hashes here.

Provenance

The following attestation bundles were made for fence_llm-2.3.2-py3-none-any.whl:

Publisher: publish-pipeline.yaml on WouterDurnez/fence

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

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