搜索

首页  >  问答  >  正文

chat gpt响应的格式化

我在我的 React 应用程序上使用聊天 gpt api。我面临的问题是如何格式化来自聊天 gpt 的响应。如果要求它以表格格式给我一个响应,它会提供奇怪的响应,我使用预标记来显示文本,响应以这种方式显示附加图像,但我想要正确的表格,就像聊天 gpt 一样,如果我要求的话,以同样的方式它显示为段落形式而不是在不同行上的任何项目列表,因此如何正确格式化聊天 GPT 响应。

我想要正确的表格和列表,如聊天 gpt 显示的那样,但这就是我接收数据的方式 这就是使用预标记时数据的显示方式,但我想要正确的表格

P粉563446579P粉563446579401 天前726

全部回复(1)我来回复

  • P粉098417223

    P粉0984172232023-10-26 11:50:14

    ChatGPT 和 OpenAI API 可以以适合您的格式返回数据。 只需在提示中添加格式说明即可。

    示例:

    以 JSON 对象的形式返回答案。

    您知道斯蒂芬·金最受欢迎的 10 本书吗?返回 JSON 对象中的书籍数组。

    ChatGPT 答案:

    {
      "books": [
        {
          "title": "The Shining",
          "year": 1977,
          "description": "A horror novel about a family that moves into an isolated hotel with a dark past."
        },
        {
          "title": "It",
          "year": 1986,
          "description": "A story about a group of friends who confront a shape-shifting evil entity in their small town."
        },
        ...
      ]
    }
    
    

    然后,您可以使用 ordered by {something}group by {something} 等指令微调结果

    回复
    0
  • 取消回复