是否可以在会话期间将响应 JSON 模式格式更改为 OpenAI Assistant?

问题描述 投票:0回答:1

m trying to start OpenAI Assistant with Python, and don
不明白如何正确使用它: 基本上,我想在一次运行中提出几个问题(我希望一些数据保留在上下文窗口中),但具有不同的输出格式。 为此,我打电话

assistant.response_format = {"type": "json_schema",  "json_schema" : outputFormat}

其中outputFormat是所需结构的字典

{
  "name": "mySchema",
  "strict": false,
  "schema": {
    "type": "object",
    "properties": {
      "text": {
        "type": "string"
      }
    },
    "required": []
  }
}

但我发现答案始终采用我在 Playground 中上传用于测试的 JSON 模式进行格式化。我该怎么做才能获取所需格式的数据?

python openai-api
1个回答
0
投票

我希望有人能解决这个问题。但是,您也可以创建具有不同结构化输出的多个助手并链接到同一线程。这应该也有效。

© www.soinside.com 2019 - 2024. All rights reserved.