Installation
Quick Start
What’s Next?
- Configuration - Learn how to configure and instantiate the SDK
- Send Method - Complete guide to the
send()method - Stream Method - Learn how to stream responses
- Tools - Detailed guide to function calling
Integrate the Python SDK in your application.
pip install edgee
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."
send() methodWas this page helpful?