# CVG 1.31.0 (26-June-2023) With this Midsummer release, we've prioritized features for you as developers: Smart IVR dialogs with CVG and ChatGPT become easier and more reliable. For this we use the Function Calls and the new AI models published two weeks ago by OpenAI . Furthermore dialogs can now smoothly be viewed within the CVG UI - whether implemented with ChatGPT or a classic Conversational AI. And finally, you can play around with the possibilities of the API very easily with our new playground bots. Have fun with CVG, your bots and enjoy the summer!  ## Extended ChatGPT Integration: Function Calls, new Models, secret Token ### Function Calls The latest release of OpenAI brings exciting features to simplify call control in our voicebot scenarios: function calls. We have now integrated function calls for forwarding and ending calls into CVG so that no JSON needs to be generated for these use cases. This simplifies writing prompts for you and makes forwarding more reliable. To use ChatGPT's function calls for call forwarding configure your CVG project as follows: 1. Set ChatGPT as bot template and OpenAI as provider (function calls not yet available on Azure, see below) 1. Write a System message that includes the departments with their phone numbers (can be other bots as well) 1. Set the switch to "Forward calls enabled". 1. Set "Bots are allowed to initiate outgoing calls" in advanced options Here is an example of a simple system message (anonymized phone numbers; replace with real phone numbers to try yourself) that forwards the caller to one of the following departments depending on their request: ``` You are a friendly and humorous employee in the switchboard of VIER Insurance. Your name is Max Miller. Answer briefly in each case. Find out which department the caller should be connected to. Before you forward to the department, have the caller confirm this forwarding. There are the following departments with their respective topics and phone numbers: - Department "Home and Housing"; Topics: Household insurance, building insurance; phone number +49xxxxxxxxx. - Department "Vehicle"; topics: Motor vehicle insurance, e-car insurance, scooter insurance, quad insurance, boat insurance ; phone number +49xxxxxxxxx - Department "Liability"; Private liability insurance, Animal owner liability insurance; phone number +49xxxxxxxxx - Department "Claims"; subjects: Claims notification, Damage to motor vehicle, Damage to building, Damage to household contents, Glass damage, Accident damage, Damage to boat; phone number +49xxxxxxxxx - Department "Animals"; Topics: Animal health insurance, dog health insurance, cat health insurance, operation insurance for dogs and cats; phone number +49xxxxxxxxx - Department "Occupational disability"; Topics: Occupational disability insurance; phone number +49xxxxxxxxx - Department "Accident insurance"; Topics: Accident insurance, accident pension; phone number +49xxxxxxxxx - Department "Old-age provision"; Topics: Basic pension, immediate pension, yield for more pension, fund pension; phone number +49xxxxxxxxx - Department "Basic capabilities"; Topics: Basic ability insurance; phone number +49xxxxxxxxx - Department "Investment"; Topics: Fund savings plan, one-time investment; phone number +49xxxxxxxxx - Department "Company pension plan"; Topics: Direct insurance, support fund; phone number +49xxxxxxxxx ``` As compared to the [JSON-version](https://cognitivevoice.io/docs/releases/1.30.0/index.html#json-output-from-chatgpt-for-call-control) there is no need to let ChatGPT generate a JSON expression.
Function calls are not yet available on Azure
OpenAI has released the Function Calls on 6/13/2023. These function calls are not yet available on Azure OpenAI Services, so function calls cannot be used on Azure at this time. JSON expressions must still be generated here.
WebRTC calls cannot be forwarded yet
Call forwarding is not yet possible for WebRTC calls. This also means that the WebRTC call button in the project's settings tab cannot yet be used to test call forwarding. We will enable forwarding of WebRTC calls soon.
New models are not yet available on Azure
OpenAI has released the new models 6/13/2023. These new models are not yet available on Azure OpenAI Services.
A playground bot is human powered
A playground bot is the exact opposite of an automated bot: every action of the bot (e.g. voice output, start recording, change STT service, ...) must be triggered manually. A playground bot is therefore 100% "human powered".