GMI Cloud Python SDK
Project description
GMICloud SDK (Beta)
Overview
Before you start: Our service and GPU resource is currenly invite-only so please contact our team (getstarted@gmicloud.ai) to get invited if you don't have one yet.
The GMI Inference Engine SDK provides a Python interface for deploying and managing machine learning models in production environments. It allows users to create model artifacts, schedule tasks for serving models, and call inference APIs easily.
This SDK streamlines the process of utilizing GMI Cloud capabilities such as deploying models with Kubernetes-based Ray services, managing resources automatically, and accessing model inference endpoints. With minimal setup, developers can focus on building ML solutions instead of infrastructure.
Features
- Artifact Management: Easily create, update, and manage ML model artifacts.
- Task Management: Quickly create, schedule, and manage deployment tasks for model inference.
- Usage Data Retrieval : Fetch and analyze usage data to optimize resource allocation.
Installation
To install the SDK, use pip:
pip install gmicloud
Setup
You must configure authentication credentials for accessing the GMI Cloud API. To create account and get log in info please visit GMI inference platform: https://inference-engine.gmicloud.ai/.
There are two ways to configure the SDK:
Option 1: Using Environment Variables
Set the following environment variables:
export GMI_CLOUD_CLIENT_ID=<YOUR_CLIENT_ID>
export GMI_CLOUD_EMAIL=<YOUR_EMAIL>
export GMI_CLOUD_PASSWORD=<YOUR_PASSWORD>
Option 2: Passing Credentials as Parameters
Pass client_id, email, and password directly to the Client object when initializing it in your script:
from gmicloud import Client
client = Client(client_id="<YOUR_CLIENT_ID>", email="<YOUR_EMAIL>", password="<YOUR_PASSWORD>")
Quick Start
1. How to run the code in the example folder
cd path/to/gmicloud-sdk
# Create a virtual environment
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python -m examples.create_task_from_artifact_template.py
2. Create an inference task from an artifact template
This is the simplest example to deploy an inference task using an existing artifact template:
Up-to-date code in /examples/create_task_from_artifact_template.py
from datetime import datetime
import os
import sys
from gmicloud import *
from examples.completion import call_chat_completion
cli = Client()
# List templates offered by GMI cloud
templates = cli.list_templates()
print(f"Found {len(templates)} templates: {templates}")
# Pick a template from the list
pick_template = "Llama-3.1-8B"
# Create Artifact from template
artifact_id, recommended_replica_resources = cli.create_artifact_from_template(templates[0])
print(f"Created artifact {artifact_id} with recommended replica resources: {recommended_replica_resources}")
# Create Task based on Artifact
task_id = cli.create_task(artifact_id, recommended_replica_resources, TaskScheduling(
scheduling_oneoff=OneOffScheduling(
trigger_timestamp=int(datetime.now().timestamp()),
min_replicas=1,
max_replicas=1,
)
))
task = cli.task_manager.get_task(task_id)
print(f"Task created: {task.config.task_name}. You can check details at https://inference-engine.gmicloud.ai/user-console/task")
# Start Task and wait for it to be ready
cli.start_task_and_wait(task.task_id)
# Testing with calling chat completion
print(call_chat_completion(cli, task.task_id))
API Reference
Client
Represents the entry point to interact with GMI Cloud APIs. Client( client_id: Optional[str] = "", email: Optional[str] = "", password: Optional[str] = "" )
Artifact Management
- get_artifact_templates(): Fetch a list of available artifact templates.
- create_artifact_from_template(template_id: str): Create a model artifact from a given template.
- get_artifact(artifact_id: str): Get details of a specific artifact.
Task Management
- create_task_from_artifact_template(template_id: str, scheduling: TaskScheduling): Create and schedule a task using an artifact template.
- start_task(task_id: str): Start a task.
- get_task(task_id: str): Retrieve the status and details of a specific task.
Notes & Troubleshooting
k
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gmicloud-0.1.6.tar.gz.
File metadata
- Download URL: gmicloud-0.1.6.tar.gz
- Upload date:
- Size: 26.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00b5fed36dcccb7d21a76006d96c7c6ee4621f61cfb299047ed9a424eabb12d0
|
|
| MD5 |
f1af7f2bdd4b267140372787a3cbe3ed
|
|
| BLAKE2b-256 |
86d6c8406d812846c9dee08ac662a780cbbaa790bca61382922b91a7be8e87e9
|
File details
Details for the file gmicloud-0.1.6-py3-none-any.whl.
File metadata
- Download URL: gmicloud-0.1.6-py3-none-any.whl
- Upload date:
- Size: 31.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d4a45f55b3d7f25cc06b9a606f784f853f031dd7cdbcfd68ea94f41153b20cf
|
|
| MD5 |
0d9f5365459416c047809b3925a7f590
|
|
| BLAKE2b-256 |
7ef330b98f6389bac428eef96f9569c81c455548d2fc44b817ca064dad4fed2d
|