Function calling and other API updates
openai.com
Function calling and other API updates
1–10 of 174 posts
Re: Function calling and other API updates
#2Re: Function calling and other API updates
#3Re: Function calling and other API updates
#4The changes/improvements to `gpt-3.5-turbo` are very welcome, considering how hard it is to get access to gpt-4
gpt-4-32k-0613 includes an extended context length for better comprehension of larger texts.
With these updates, we'll be inviting many more people from the waitlist to try GPT-4 over the coming weeks, with the intent to remove the waitlist entirely with this model.Re: Function calling and other API updates
#5Yessssssss!
Re: Function calling and other API updates
#6Re: Function calling and other API updates
#7While developing a more-simple LangChain alternative (https://github.com/minimaxir/simpleaichat) I discovered a neat trick for allowing ChatGPT to select tools from a list reliably: put the list of tools into a numbered list, and force the model to return only a single number by using the logit_bias parameter: https://github.com/minimaxir/simpleaichat/blob/main/PROMPTS....
The slight price drop for ChatGPT inputs is of course welcome, since inputs are the bulk of the costs for longer conversations. A 4x context window at 2x the price is a good value too. The notes for the updated ChatGPT also say "more reliable steerability via the system message" which will also be huge if it works as advertised.
Re: Function calling and other API updates
#8I also wonder how much of an impact the new Nvidia HGX systems will have on the medium term infra cost on running these services and whether we will see some benefits from that.
Re: Function calling and other API updates
#9Re: Function calling and other API updates
#10The big feature here is the function calls, as this is effectively a replacement for the "Tools" feature of Agents popularized by LangChain, except in theory much more efficient since it may not require an extra call to the API. In the case of LangChain which selects Tools and their functional outputs through JSON Markdown shennanigans (which often fails and causes ParsingErrors), this variant of ChatGPT appears to b…