Local Deployment

Overview

Starting with SDK version 0.5.63, Qwak now supports local realtime deployment of models. This feature allows developers to deploy models directly on their local machine for testing and development purposes, offering an immediate and practical way to interact with the model in a realtime environment. This documentation provides a step-by-step guide on how to deploy your model locally.

Prerequisites

Before proceeding with the local deployment, ensure you have the following requirements met:

Qwak SDK Version: Ensure your system has Qwak SDK version 0.5.63 or later installed. This version introduces support for local realtime deployment.
Docker: A running Docker daemon on your local machine is required. The local deployment process leverages Docker to create a containerized environment for the model. In addition, the docker Python package is also required.

Deploying Your Model Locally

To deploy your model locally, follow the steps outlined below:

Run the Deployment Command: Execute the following command to deploy your model locally. Replace <YOUR_MODEL> with the actual model ID you wish to deploy.

qwak models deploy realtime --model-id "<YOUR_MODEL>" --build-id "<YOUR_BUILD_ID>"--local

This command initiates the deployment process by creating a Docker container in which your model will be hosted.

πŸ“˜

Ensure Docker is Running

The local deployment process requires an active Docker daemon. You can check Docker's status by running docker info or docker ps in a new terminal window. If Docker is not running, start it through your system's preferred method before attempting to deploy your model again.