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

# 获取系统提示词类型列表

> 返回所有可用的 promptType 枚举值及其说明



## OpenAPI

````yaml api-reference/openapi-huajune.json get /prompt-types
openapi: 3.1.0
info:
  title: 华骏智能招聘 API
  description: 华骏智能招聘助手的 Open API 接口文档，提供模型管理、对话、工具、配置等功能
  version: 1.0.0
  contact:
    name: 华骏科技
    url: https://huajune.duliday.com
servers:
  - url: https://huajune.duliday.com/api/v1
    description: 生产环境
security:
  - bearerAuth: []
tags:
  - name: Models
    description: 模型管理相关接口
  - name: Chat
    description: AI 对话相关接口
  - name: Tools
    description: 工具管理相关接口
  - name: Configuration
    description: 配置管理相关接口
paths:
  /prompt-types:
    get:
      tags:
        - Configuration
      summary: 获取系统提示词类型列表
      description: 返回所有可用的 promptType 枚举值及其说明
      operationId: getPromptTypes
      responses:
        '200':
          description: 成功获取提示词类型列表
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      promptTypes:
                        type: array
                        items:
                          $ref: '#/components/schemas/PromptType'
          headers:
            X-Correlation-Id:
              description: 请求关联 ID
              schema:
                type: string
        '401':
          $ref: '#/components/responses/UnauthorizedError'
components:
  schemas:
    PromptType:
      type: object
      required:
        - id
        - description
      properties:
        id:
          type: string
          description: 提示词类型标识符
          enum:
            - bossZhipinSystemPrompt
            - bossZhipinLocalSystemPrompt
            - generalComputerSystemPrompt
          example: bossZhipinSystemPrompt
        description:
          type: string
          description: 类型描述
          example: BOSS直聘招聘助手系统提示词
  responses:
    UnauthorizedError:
      description: 未授权 - API Key 无效或缺失
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Unauthorized
              message:
                type: string
                example: Invalid or missing API key
              statusCode:
                type: integer
                example: 401
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 使用 Bearer Token 进行认证，格式：`Bearer YOUR_API_KEY`

````