Skip to main content

Trim SDK.

Project description

🧠 Trim LangChain SDK

Trim LangChain is a lightweight, OpenAI-compatible SDK designed for smart routing and efficient interaction with LLMs. It integrates seamlessly with LangChain agents, chat models, and OpenAI-style APIs.


📦 Installation

Install the SDK via pip:

pip install trim-sdk

🚀 Quick Start


🔐 Environment Variables

To use the SDK, you need to set the following environment variables in a .env file or your system environment:

TRIM_API_KEY=your_trim_api_key_here
OPENAI_API_KEY=your_openai_api_key_here
  • TRIM_API_KEY: Your API key for authenticating with the Trim backend.
  • OPENAI_API_KEY: Your OpenAI API key used internally by Trim to route to OpenAI models.

Make sure to load these using Python's dotenv:

from dotenv import load_dotenv
load_dotenv()

🔗 LangChain ReAct Agent

from dotenv import load_dotenv
from langgraph.prebuilt import create_react_agent

from examples.utils import print_agent_response
from trim import TrimChatModel

load_dotenv()


def calculator(expression: str) -> str:
    """Evaluates a basic math expression."""
    try:
        return str(eval(expression))
    except Exception as e:
        return f"Error: {e}"


llm = TrimChatModel()

agent = create_react_agent(model=llm, tools=[calculator])

response = agent.invoke({"messages": "What is (12 * 3) + 5?"})
print_agent_response(response['messages'])

💬 LangChain ChatModel

from trim import TrimChatModel
from dotenv import load_dotenv

load_dotenv()

llm = TrimChatModel()

response = llm.invoke([
    {"role": "user", "content": "Tell me about Elon Musk in 20 words"}
])

print(response.content)

🧩 OpenAI-Compatible API

from trim import TrimClient
from dotenv import load_dotenv

load_dotenv()

client = TrimClient()

# Way 1: Simple completion
completion = client.responses.create(
    model="gpt-4.1",
    input="Write a one-sentence bedtime story about a unicorn."
)
print(completion.output_text)

# Way 2: Chat completion
completion = client.chat.completions.create(
    model="gpt-4.1",
    messages=[{"role": "user", "content": "Write a one-sentence bedtime story about bears"}]
)
print(completion.choices[0].message.content)

🧠 LangChain LLM Wrapper

from trim import TrimLLM
from dotenv import load_dotenv

load_dotenv()

llm = TrimLLM()

prompt = "Explain quantum computing in less than 20 words."

result = llm.invoke(prompt)
print(result)

📚 Documentation

Coming soon. For now, explore the examples/ directory for use cases and integration patterns.


🤝 Contributing

Contributions are welcome! Please open issues or submit pull requests.


🛡️ License

MIT License

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

trim_trim-0.2.0.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

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

trim_trim-0.2.0-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file trim_trim-0.2.0.tar.gz.

File metadata

  • Download URL: trim_trim-0.2.0.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.0

File hashes

Hashes for trim_trim-0.2.0.tar.gz
Algorithm Hash digest
SHA256 862f7593ad7a12497d4322a98e06909e7e8f39b67b796844338d2103a4b6f71b
MD5 1361dc0aa476e91e87394b0a29e084b5
BLAKE2b-256 1cb3ed3a7309d681a7042e2d0429d2b8562f75716a122c06e05102abe393400c

See more details on using hashes here.

File details

Details for the file trim_trim-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: trim_trim-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.0

File hashes

Hashes for trim_trim-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 832fd55378a366b1fcb039bab655c1feecb2112e418c9c2c33c55a8cd5db8be0
MD5 300676f329efe0cf94783f50ce3fcd48
BLAKE2b-256 ab7e00df3d4bb657e4c5dbf76bdd79db16ead3fb2e1adf13eaa6453e552ebe87

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