> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Recommended Agent Config

> 🤖 Get recommended provider configuration for creating an agent.

**Frontend Usage:**
Call this when user selects language/use case to auto-populate provider fields.

**Parameters:**
- `language`: Primary language (e.g., 'en', 'es', 'zh')
- `use_case`: voice_agent, customer_support, call_center
- `priority`: speed, quality, cost, balanced

**Returns:**
Ready-to-use agent configuration with recommended providers.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /providers/agent-config/recommended
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /providers/agent-config/recommended:
    get:
      tags:
        - providers
      summary: Get Recommended Agent Config
      description: >-
        🤖 Get recommended provider configuration for creating an agent.


        **Frontend Usage:**

        Call this when user selects language/use case to auto-populate provider
        fields.


        **Parameters:**

        - `language`: Primary language (e.g., 'en', 'es', 'zh')

        - `use_case`: voice_agent, customer_support, call_center

        - `priority`: speed, quality, cost, balanced


        **Returns:**

        Ready-to-use agent configuration with recommended providers.
      operationId: get_recommended_agent_config_providers_agent_config_recommended_get
      parameters:
        - name: language
          in: query
          required: false
          schema:
            type: string
            description: Primary language for the agent
            default: en
            title: Language
          description: Primary language for the agent
        - name: use_case
          in: query
          required: false
          schema:
            type: string
            description: 'Use case: voice_agent, customer_support, call_center'
            default: voice_agent
            title: Use Case
          description: 'Use case: voice_agent, customer_support, call_center'
        - name: priority
          in: query
          required: false
          schema:
            type: string
            description: 'Priority: speed, quality, cost, balanced'
            default: balanced
            title: Priority
          description: 'Priority: speed, quality, cost, balanced'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````