1tomany/llm-sdk

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

Installs: 2

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 4

pkg:composer/1tomany/llm-sdk

v0.2.0 2026-02-20 23:44 UTC

This package is auto-updated.

Last update: 2026-02-21 00:01:08 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.

Direct usage

See the basic_query.php example.

Supported platforms

  • 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 "Queries" section below refers to the ability to compile and execute a query against a large language model.

Feature Claude Gemini Mock OpenAI
Batches
Create
Read
Cancel
Files
Upload
Read
List
Download
Delete
Queries
Compile
Execute

Credits

License

The MIT License