Skip to main content

GPUStack

Project description

GPUStack

demo

GPUStack is an open-source GPU cluster manager for running large language models(LLMs).

Key Features

  • Supports a Wide Variety of Hardware: Run with different brands of GPUs in Apple MacBooks, Windows PCs, and Linux servers.
  • Scales with Your GPU Inventory: Easily add more GPUs or nodes to scale up your operations.
  • Distributed Inference: Supports both single-node multi-GPU and multi-node inference and serving.
  • Lightweight Python Package: Minimal dependencies and operational overhead.
  • OpenAI-compatible APIs: Serve APIs that are compatible with OpenAI standards.
  • User and API key management: Simplified management of users and API keys.
  • GPU metrics monitoring: Monitor GPU performance and utilization in real-time.
  • Token usage and rate metrics: Track token usage and manage rate limits effectively.

Installation

Linux or MacOS

GPUStack provides a script to install it as a service on systemd or launchd based systems. To install GPUStack using this method, just run:

curl -sfL https://get.gpustack.ai | sh -s -

Optionally, you can add extra workers to form a GPUStack cluster by running the following command on other nodes (replace http://myserver and mytoken with your actual server URL and token):

curl -sfL https://get.gpustack.ai | sh -s - --server-url http://myserver --token mytoken

In the default setup, you can run the following to get the token used for adding workers:

cat /var/lib/gpustack/token

Windows

Run PowerShell as administrator (avoid using PowerShell ISE), then run the following command to install GPUStack:

Invoke-Expression (Invoke-WebRequest -Uri "https://get.gpustack.ai" -UseBasicParsing).Content

Optionally, you can add extra workers to form a GPUStack cluster by running the following command on other nodes (replace http://myserver and mytoken with your actual server URL and token):

Invoke-Expression "& { $((Invoke-WebRequest -Uri 'https://get.gpustack.ai' -UseBasicParsing).Content) } --server-url http://myserver --token mytoken"

In the default setup, you can run the following to get the token used for adding workers:

Get-Content -Path "$env:APPDATA\gpustack\token" -Raw

Manual Installation

For manual installation or detailed configurations, refer to the installation docs.

Getting Started

  1. Run and chat with the llama3 model:
gpustack chat llama3 "tell me a joke."
  1. Open http://myserver in the browser to access the GPUStack UI. Log in to GPUStack with username admin and the default password. You can run the following command to get the password for the default setup:

Linux or MacOS

cat /var/lib/gpustack/initial_admin_password

Windows

Get-Content -Path "$env:APPDATA\gpustack\initial_admin_password" -Raw
  1. Click Playground in the navigation menus. Now you can chat with the LLM in the UI playground.

Playground Screenshot

  1. Click API Keys in the navigation menus, then click the New API Key button.

  2. Fill in the Name and click the Save button.

  3. Copy the generated API key and save it somewhere safe. Please note that you can only see it once on creation.

  4. Now you can use the API key to access the OpenAI-compatible API. For example, use curl as the following:

export GPUSTACK_API_KEY=myapikey
curl http://myserver/v1-openai/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $GPUSTACK_API_KEY" \
  -d '{
    "model": "llama3",
    "messages": [
      {
        "role": "system",
        "content": "You are a helpful assistant."
      },
      {
        "role": "user",
        "content": "Hello!"
      }
    ],
    "stream": true
  }'

Supported Platforms

  • MacOS
  • Linux
  • Windows

Supported Accelerators

  • Apple Metal
  • NVIDIA CUDA

We plan to support the following accelerators in future releases.

  • AMD ROCm
  • Intel oneAPI
  • MTHREADS MUSA
  • Qualcomm AI Engine

Supported Models

GPUStack uses llama.cpp as the backend and supports large language models in GGUF format. Models from the following sources are supported:

  1. Hugging Face

  2. Ollama Library

Here are some example models:

OpenAI-Compatible APIs

GPUStack serves the following OpenAI compatible APIs under the /v1-openai path:

  • List Models
  • Create Completions
  • Create Chat Completions
  • Create Embeddings

For example, you can use the official OpenAI Python API library to consume the APIs:

from openai import OpenAI
client = OpenAI(base_url="http://myserver/v1-openai", api_key="myapikey")

completion = client.chat.completions.create(
  model="llama3",
  messages=[
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "Hello!"}
  ]
)

print(completion.choices[0].message)

GPUStack users can generate their own API keys in the UI.

Documentation

Please see the official docs site for complete documentation.

Build

  1. Install python 3.10+.

  2. Run make build.

You can find the built wheel package in dist directory.

Contributing

Please read the Contributing Guide if you're interested in contributing to GPUStack.

License

Copyright (c) 2024 The GPUStack authors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at LICENSE file for details.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gpustack-0.2.0.tar.gz (169.4 MB view details)

Uploaded Source

Built Distributions

gpustack-0.2.0-py3-none-win_amd64.whl (159.4 MB view details)

Uploaded Python 3 Windows x86-64

gpustack-0.2.0-py3-none-manylinux2014_x86_64.whl (172.4 MB view details)

Uploaded Python 3

gpustack-0.2.0-py3-none-manylinux2014_aarch64.whl (172.4 MB view details)

Uploaded Python 3

gpustack-0.2.0-py3-none-macosx_11_0_universal2.whl (16.5 MB view details)

Uploaded Python 3 macOS 11.0+ universal2 (ARM64, x86-64)

File details

Details for the file gpustack-0.2.0.tar.gz.

File metadata

  • Download URL: gpustack-0.2.0.tar.gz
  • Upload date:
  • Size: 169.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for gpustack-0.2.0.tar.gz
Algorithm Hash digest
SHA256 76bfd2e3f693b855841623e448afa832ed10e1be890e479471c27f992177b44e
MD5 e69b49665ea443cc85b147a03fda4cbb
BLAKE2b-256 e49584c84c94597583e4a9cd2f4f926b0f83d28ffd1c8c7acfced88b9333c25b

See more details on using hashes here.

File details

Details for the file gpustack-0.2.0-py3-none-win_amd64.whl.

File metadata

  • Download URL: gpustack-0.2.0-py3-none-win_amd64.whl
  • Upload date:
  • Size: 159.4 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for gpustack-0.2.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 8fa9023ff2c88d41f3427a074c1a86a2c967ae02cd50b5fd9fb57d7607f43857
MD5 52863d3fe39669efa7d8b620891c4724
BLAKE2b-256 de2893628e031cbeeb4c180ef22475fd4f3877a2af46a8d327573f49cc456c5b

See more details on using hashes here.

File details

Details for the file gpustack-0.2.0-py3-none-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gpustack-0.2.0-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bb136723f9f4657daf733f008baa340da45da4c8498ca2a6db6369b745fe661
MD5 eb4560b42a58d0933335471d597854f5
BLAKE2b-256 9d3a6afd3293f1bd2280a8e0a0594edc1fa236a682c89ef4b897a6ac3017b7a4

See more details on using hashes here.

File details

Details for the file gpustack-0.2.0-py3-none-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gpustack-0.2.0-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f59c24281219a393de28c2b4adcd683dfc164248c2efe63026bb081a2475e926
MD5 084bca23c6788a0973fc747d569c3060
BLAKE2b-256 e4d6ed5c125f333ca8745a829410dee1f08676b337ed89ad8810deb7a02c1475

See more details on using hashes here.

File details

Details for the file gpustack-0.2.0-py3-none-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for gpustack-0.2.0-py3-none-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 223cab3d19e8e98821ee29addb5a4293ca1d5db929385a948e5e1c793984d030
MD5 c6939be5e286f8f7a9b505ec9822d93b
BLAKE2b-256 94083c3ed7a188233f6e442767f15bf8f0403eb067451b276651e887e6665ecf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page