You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Openai has function features, but types do not. Additionally, a design suitable for NestJS can be made by adding decorators.
Sample;
@OpenAiFunction('get_weather',{description: 'info'})asyncfunctiongetWeather(
@Args({description: 'The city and state, e.g. San Francisco, CA',type: 'string'})location,){returnfetch(`https://foo.bar/${location}`);}
this.openAiService.chat({functions: ['get_weather']}); // or OpenAi.getFunction(getWeather)
The text was updated successfully, but these errors were encountered:
Openai has function features, but types do not. Additionally, a design suitable for NestJS can be made by adding decorators.
Sample;
The text was updated successfully, but these errors were encountered: