Skip to main content
The Edgee Python SDK provides a lightweight, type-safe interface to interact with the Edgee AI Gateway. It supports OpenAI-compatible chat completions, function calling, and streaming.

Installation

pip install edgee

Quick Start

from edgee import Edgee

# Create client
edgee = Edgee("your-api-key")

# Send a simple request
response = edgee.send(
    model="gpt-4o",
    input="What is the capital of France?"
)

# Access the response
print(response.text)
# "The capital of France is Paris."

What’s Next?