skillfed

cerebras-cloud-sdk

The official Python library for the cerebras API

cerebras-cloud-sdk v1.91.0 1.8M downloads/30d#3,518 on PyPI152
Permissive license Apache-2.0 Active released

What it is and what it does

This is the official Python client library for the Cerebras Cloud API, generated using Stainless. It provides typed, synchronous and asynchronous interfaces to Cerebras's inference services, built on httpx for HTTP transport. The library includes full type definitions for request parameters and response fields, enabling IDE autocomplete and static type checking.

The package is designed for applications that need to send chat or text completion requests to Cerebras's inference infrastructure. It supports both one-shot and streaming responses, with optional asynchronous execution via AsyncCerebras. The library includes a TCP warming mechanism (enabled by default) to reduce time-to-first-token, though this can be disabled if repeated client construction is necessary.

Use it for:

  • Build a chatbot or conversational AI application using Cerebras's inference backend with full async support.
  • Stream large language model responses token-by-token in a web application or CLI tool.
  • Integrate Cerebras inference into an existing Python application with type-safe request/response handling.
  • Run batch text completions with high throughput using Cerebras's clustered supercomputer infrastructure.
  • Develop a multi-tenant SaaS service that delegates inference to Cerebras Cloud via this SDK.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides a Python client library for accessing the Cerebras Cloud API, supporting both synchronous and asynchronous chat and text completion requests with streaming capabilities.

Yes. The package is actively maintained, has no known vulnerabilities, uses a permissive license, and offers low install friction. It is the canonical way to access Cerebras Cloud's inference API from Python. Install it if you have a Cerebras API key and need to integrate their inference service into a Python application.

Install

cerebras-cloud-sdk on PyPI

pip

pip install cerebras-cloud-sdk

uv

uv add cerebras-cloud-sdk

poetry

poetry add cerebras-cloud-sdk

Installing cerebras-cloud-sdk

Before you install

Low install friction with a pure-Python wheel distribution. The package is actively maintained with a recent release (29 days old) and no known vulnerabilities. Requires Python 3.9 or later.

License in practice

Licensed under Apache-2.0 (permissive), allowing commercial and private use with minimal restrictions beyond attribution and liability disclaimers.

Quickstart

pip install cerebras_cloud_sdk

import os
from cerebras.cloud.sdk import Cerebras

client = Cerebras(api_key=os.environ.get("CEREBRAS_API_KEY"))
chat_completion = client.chat.completions.create(
    messages=[{"role": "user", "content": "Why is fast inference important?"}],
    model="gpt-oss-120b"
)
print(chat_completion)

Requires a valid CEREBRAS_API_KEY environment variable from cloud.cerebras.ai; Python 3.9 or later.

Verify before relying

  • Performance characteristics and latency benchmarks for inference requests compared to other providers.
  • Rate limiting and quota policies for the Cerebras Cloud API.
  • Whether the TCP warming mechanism on client construction has measurable impact on typical workloads.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 6 — anyio, distro, httpx, pydantic, sniffio, typing-extensions
Maintenance actively maintained — 29 days since the last release
Last repo commit
First released
Downloads 1,819,486/month — #3,518 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: cerebras_cloud_sdk-1.91.0-py3-none-any.whl

Intended Audience :: DevelopersLicense :: OSI Approved :: Apache Software LicenseOperating System :: MacOSOperating System :: Microsoft :: WindowsOperating System :: OS IndependentOperating System :: POSIXOperating System :: POSIX :: LinuxProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.9Topic :: Software Development :: Libraries :: Python ModulesTyping :: Typed

Tags

cerebras api clientcerebras inference sdkllm api client pythonchat completion libraryasync http client for aicerebras cloud pythongenerative ai api wrapper
llm-inferenceasync-http-clientapi-wrapper

More Python Modules packages