◉ WORKSPACE

OpenAI API Gateway Workspace

Create collaborative workspaces for your team. Manage projects, share configurations, and develop AI integrations together.

Workspace Features

📁

Project Organization

Organize APIs and configurations into projects

🔗

Shared Configurations

Share rate limits, quotas, and settings

📊

Team Analytics

View combined usage across workspace

🔐

Access Control

Granular permissions per workspace

Create Workspace

workspace_setup.py
# Workspace Management from openai_gateway import GatewayClient client = GatewayClient(api_key="your-api-key") # Create a new workspace workspace = client.workspaces.create( name="AI Development Team", description="Shared workspace for AI projects" ) # Add members to workspace workspace.members.add( email="developer@company.com", role="developer" ) # Create project in workspace project = workspace.projects.create( name="Chatbot API", api_template="openai-chat" ) print(f"Workspace created: {workspace.id}")

◈ Related Topics