# ai_mentor_orgs_users_settings_tenant_llm_create Create or update an LLM model for a tenant. Accessible only to tenant administrators. Args: request: The HTTP request containing LLM model details. org: The unique identifier of the tenant. Returns: Response: Details of the newly created or updated LLM model. Raises: ValidationError: If request data is invalid. NotFound: If the tenant does not exist. Endpoint: POST /api/ai-mentor/orgs/{org}/users/{user_id}/settings/tenant-llm/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `llm_provider` (string, required) - `llm_name` (string, required) - `tenant` (integer,null) ## Response 201 fields (application/json): - `id` (integer, required) - `llm_provider` (string, required) - `llm_name` (string, required) - `tenant` (integer,null)