1tomany/llm-sdk

A single, unified, framework-independent library for integration with many popular AI platforms and large language models

Maintainers

Package info

github.com/1tomany/llm-sdk

pkg:composer/1tomany/llm-sdk

Statistics

Installs: 66

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 2

v0.6.0 2026-03-13 16:10 UTC

README

This library provides a single, unified, framework-independent library for integration with several popular AI platforms and large language models.

Installation

Install the library using Composer:

composer require 1tomany/llm-sdk

Usage

There are two ways to use this library:

  1. Direct Instantiate the AI client you wish to use and send a request object to it. This method is easier to use, but comes with the cost that your application will be less flexible and testable.
  2. Actions Register the clients you wish to use with a OneToMany\LlmSdk\Factory\ClientFactory instance, inject that instance into each action you wish to take, and interact with the action instead of through the client.

Note: A Symfony bundle is available if you wish to integrate this library into your Symfony applications with autowiring and configuration support.

I learn best by looking at actual code samples, so lets take a look at the two methods first.

Examples

Supported platforms

  • Anthropic
  • Gemini
  • Mock
  • OpenAI

Platform feature support

Note: Each platform refers to running model inference differently; OpenAI uses the word "Responses" while Gemini uses the word "Content". I've decided the word "Query" is the most succinct term to describe interacting with an LLM. The "Embeddings" and "Queries" sections below refers to the ability to compile a query and use it to generate output from an LLM.

Feature Anthropic Gemini Mock OpenAI
Batches
Create
Read
Cancel
Embeddings
Compile
Embed Content
Files
Upload
Read
List
Download
Delete
Queries
Compile
Generate Output

Credits

License

The MIT License