## Create `inference.api_keys.create(APIKeyCreateParams**kwargs) -> APIKeyCreateResponse` **post** `/v2/gen-ai/models/api_keys` To create a model API key, send a POST request to `/v2/gen-ai/models/api_keys`. ### Parameters - **name:** `str` A human friendly name to identify the key ### Returns - `class APIKeyCreateResponse` - **api\_key\_info:** `Optional[APIModelAPIKeyInfo]` Model API Key Info ### Example ```python from do_gradientai import GradientAI client = GradientAI() api_key = client.inference.api_keys.create() print(api_key.api_key_info) ```