openapi: 3.2.0 info: title: Fast Admin API version: 0.1.0 tags: - name: admin paths: /admin/llm/default_model: get: tags: - admin summary: Llm Default Model description: Get default LLM model operationId: llm_default_model_admin_llm_default_model_get parameters: - name: key in: query required: false schema: anyOf: - type: string - type: 'null' title: Key responses: '201': description: Successful Response content: application/json: schema: type: object title: Response Llm Default Model Admin Llm Default Model Get '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' /admin/llm/models: get: tags: - admin summary: Models description: Get all models config operationId: models_admin_llm_models_get parameters: - name: key in: query required: false schema: anyOf: - type: string - type: 'null' title: Key responses: '201': description: Successful Response content: application/json: schema: type: object title: Response Models Admin Llm Models Get '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' 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 type: object required: - loc - msg - type title: ValidationError