Adapters as API gateways to Different LLM Models
Project description
Adapters Package Documentation
Overview
The Adapters package facilitates communication between different language model APIs by providing a unified interface for interaction. This ensures ease of use and flexibility in integrating multiple models from various providers.
The package can be installed an used via pip:
pip install martian-adapters
Getting Started
Prerequisites
- Python version: 3.11.10
- Poetry
Installation
poetry install
poetry run pre-commit install
Setting Up Pre-commit
Pre-commit hooks help maintain code quality and standards. Install them with the following command:
poetry run pre-commit install
To run pre-commit manually:
poetry run pre-commit run --all-files
Semantic Versioning
For versioning we follow Semantic Versioning
Environment Configuration
The package requires certain environment variables to be set by the users:
- Copy
.env-example
to.env
and populate it with appropriate values.
Running Tests
Ensure Python 3.11 is used:
poetry run pytest
Quickstart
from adapters import AdapterFactory, Prompt
from adapters.types import Conversation, ConversationRole, Turn
adapter = AdapterFactory.get_adapter_by_path("openai/openai/gpt-4o-mini")
conversation = Conversation(
[Turn(role=ConversationRole.user, content="Hi")]
)
adapter.execute_sync(conversation)
Adapter paths follows the format provider/vendor/model_name
. Use AdapterFactory.get_supported_models()
to retrieve all supported models. For a given model, model.get_path()
returns the adapter path.
Contributing
Adding New Models
-
Existing Providers: Add new models to the
SUPPORTED_MODELS
array if the provider is already supported. -
New Providers:
- If the provider follows the OpenAI format, model integration is straightforward. See the "Together" provider class as an example.
- For providers with different schemas, see the "Anthropic" provider class for guidance.
Development Steps
-
Add the Provider and Model: Update
provider_adapters/__init__.py
and test files accordingly. -
Write Tests: Add tests in the relevant directories. Use
@pytest.mark.vcr
for tests making network requests. -
Run Tests:
poetry run pytest
-
Check-in Cassette Files: Include any new cassette YAML files in your commit.
-
Send a Pull Request: Ensure all tests pass before requesting a review.
Re-creating Cassette Files
Use the --record-mode=rewrite
option with pytest to update cassette files.
Additional Notes
Some models may only be accessible from specific locations (e.g., the U.S.). In such cases, running tests might require access to a U.S.-based server.
This documentation provides a streamlined approach to using and contributing to the Adapters package, emphasizing practical steps and clear examples.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file martian_adapters-6.4.0.tar.gz
.
File metadata
- Download URL: martian_adapters-6.4.0.tar.gz
- Upload date:
- Size: 34.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/5.15.0-1057-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5bd49f00f11290f54a4e24fbff5b802cc6559e49e9c88d32a649e61d681b7de |
|
MD5 | e5c9a95166600467984ff01da5be07c6 |
|
BLAKE2b-256 | 0bb53ea801bba5980ffc442544e97540ab7f816296da7722762c0aba65fc55cd |
File details
Details for the file martian_adapters-6.4.0-py3-none-any.whl
.
File metadata
- Download URL: martian_adapters-6.4.0-py3-none-any.whl
- Upload date:
- Size: 50.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/5.15.0-1057-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3678841d33f011c7268193f7bcfffc6c2769b3efff870b7904f34c1a277a957a |
|
MD5 | 5c065cda4b6e1a226c02b6efb59a75f9 |
|
BLAKE2b-256 | 484df4a6e48dc22280c72bb34a387dac2470d241c7134bbbd10863bb94914ebd |