基础使用示例

deepseek4j 支持通过 JSON Schema 来格式化模型输出。这使得我们可以精确控制 AI 模型的输出格式,确保输出符合预期的 JSON 结构。

此功能只支持 deepseek-chat 模型

简单示例

以下是一个简单的示例,展示如何使用 JSON 格式化输出解析考试文本:

String systemPrompt = "   The user will provide some exam text. Please parse the \"question\" and \"answer\" and output them in JSON format.\n" +
        "            \n" +
        "            EXAMPLE INPUT:\n" +
        "            Which is the highest mountain in the world? Mount Everest.\n" +
        "            \n" +
        "            EXAMPLE JSON OUTPUT:\n" +
        "            {\n" +
        "                \"question\": \"Which is the highest mountain in the world?\",\n" +
        "                \"answer\": \"Mount Everest\"\n" +
        "            }";



String userPrompt = "Which is the longest river in the world? The Nile River.";


ChatCompletionRequest request = ChatCompletionRequest.builder()
        .model(ChatCompletionModel.DEEPSEEK_CHAT)
        .addSystemMessage(systemPrompt)
        .addUserMessage(userPrompt)
        .responseFormat(ResponseFormatType.JSON_OBJECT)
        .build();

ChatCompletionResponse completionResponse = deepSeekClient.chatCompletion(request).execute();

预期输出:

{
    "question": "Which is the longest river in the world?",
    "answer": "The Nile River"
}

PIG AI应用开发平台 | 适合中大型企业构建自主可控的AI中台

为Java开发者提供全栈式AI工程化解决方案,强类型/高可维护性架构,内置30+主流大模型支持。

  • 🔍 知识引擎体系:RAG 知识引擎全自动化多模态解决方案
  • 📝 AI-OCR 中枢:复杂非标场景高精度识别
  • ⚙️ 业务智能融合:函数编排 + Chat2SQL,无缝对接现有业务系统
  • 🛡️ N维风控体系:敏感词/IP/Token/User 规则控制引擎

文档有误?请协助编辑

发现文档问题?点击此处直接在 GitHub 上编辑并提交 PR,帮助我们改进文档!