Skip to content

v1.87.3

Compare
Choose a tag to compare
@allanbunch allanbunch released this 13 Mar 15:26
· 22 commits to main since this release
  • Ehancement: Upgraded the OpenAI API Library dependency from v4.85.4 to v4.87.3.

  • Features: Implemented Responses API capabilities.

    • OpenAI's most advanced interface for generating model responses.
    • Create stateful interactions with the model, using the output of previous responses as input and more.
    • 🔥 Native agentic web search capabilities:
    msg.payload = {
      "model": "gpt-4o-mini",
      "tools": [{ type: "web_search_preview" }],
      "input": "What was a positive news story from today?"
    }
    • 🔥 Native agentic computer use capabilities.
    • 🔥 Reasoning model control properties:
    msg.payload = {
      "model": "o3-mini",
      "input": "How much wood would a woodchuck chuck?",
      "reasoning": {
        "effort": "high"
      }
    }

Full Changelog: v1.85.4...v1.87.3