Takeoff SDK package is a python sdk that provides a simple interface to interact with Takeoff
Project description
Takeoff SDK - Internal
Table of Contents
About
The Takeoff SDK library facilitates launching Takeoff within Python. It provides a Pythonic interface, simplifying the process of initiating Takeoff using the docker run command. Essentially, it wraps the dev.sh script, which manages Docker with all necessary environment variables, volume mounting, network configuration, and device settings. This library is specifically designed for an internal team of developers who need to integrate Python applications with the Takeoff Server, offering a quick and straightforward way to start Takeoff in a Python runtime. It also enables running benchmarks and integration tests.
Getting Started
Installing
To get started with the Takeoff SDK Library, you can install it directly using pip:
pip install takeoff_sdk
Alternatively, if you are working on developing the library, you can install it in editable mode. This allows you to make changes to the library and test them in real-time. Navigate to the takeoff-sdk
folder and run the following command:
pip install -e .
Usage
Launch Takeoff
To quickly launch the Takeoff server with default configurations, use the following script:
from takeoff_sdk import Takeoff
takeoff = Takeoff(model_name="test_model", device="cuda")
takeoff.start() # this will start a docker with takeoff server in the background
For a more customized setup:
from takeoff_sdk import Takeoff, TakeoffEnvSetting
config = TakeoffEnvSetting(model_name="test_model", device="cpu", max_batch_size=16)
takeoff = Takeoff.from_config(config)
takeoff.start() # this will start a docker with takeoff server in the background
Refer to the TakeoffEnvSetting
Data Object or Takeoff Environment Variables Settings for additional configuration options.
Launch from a manifest mode:
from takeoff_sdk import Takeoff
takeoff = Takeoff.from_manifest("path_to_your_manifest.yaml")
takeoff.start() # this will takeoff server using manifest.yaml
Add Extra Model
This utilizes the model_management_api functionality, which in python you can do:
# assume you have a takeoff object running
# takeoff.start() running
# This will add one more model to `embedding` consumer group
takeoff.add_model(model_name="test_model", backend="hf", device="cuda", consumer_group="embedding")
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 takeoff_sdk-0.3.3.tar.gz
.
File metadata
- Download URL: takeoff_sdk-0.3.3.tar.gz
- Upload date:
- Size: 18.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 923ac4ae314f975894414177446ded026b3ee2b5070b574b3441bf4b0b572b07 |
|
MD5 | e6c219aeebd49f757391a8418211b1b4 |
|
BLAKE2b-256 | 3279a773890c928bbf021ad43aab479941ecb499c182a12a92da89f2d9abaa14 |
File details
Details for the file takeoff_sdk-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: takeoff_sdk-0.3.3-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bb316d231eb7373a8cd0c291459350191344f5d0c4df85deaa16faf5e0adb48 |
|
MD5 | 5e141df1ef70347f9f2e36d4f819c4e2 |
|
BLAKE2b-256 | 1d796fde3505ad81784567d62135ebfec92cc071c7754da1e78c6955865285c2 |