
Documentation
Getting Started with OmniDimension SDK
Learn how to install and set up the OmniDimension SDK to start building powerful AI voice agents.
Installation
Install the OmniDimension SDK using pip, the Python package manager:
pip install omnidimension
Authentication
To use the OmniDimension SDK, you need an API key. You can get your API key from theOmniDimension Dashboardunder your account settings.
Setting up your API key
We recommend storing your API key as an environment variable for security:
# Linux/macOS
export OMNIDIM_API_KEY="your_api_key_here"
# Windows (Command Prompt)
set OMNIDIM_API_KEY=your_api_key_here
# Windows (PowerShell)
$env:OMNIDIM_API_KEY="your_api_key_here"
Basic Usage
Here's a simple example to get you started with the OmniDimension SDK:
1
2
3
4
5
6
7
8
9
10
import os
from omnidimension import Client
# Initialize the OmniDimension client
api_key = os.environ.get('OMNIDIM_API_KEY', 'your_api_key_here')
client = Client(api_key)
# List all agents
agents = client.agent.list()
print(agents)
Next Steps
Now that you have the OmniDimension SDK installed and configured, you can explore the following sections to learn more: