@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20231109.1 → 1.20231114.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/chat-gptapi.ts +5 -5
- package/package.json +1 -1
package/api/chat-gptapi.ts
CHANGED
|
@@ -31,7 +31,7 @@ import { StringVBAResponse } from '../models';
|
|
|
31
31
|
export const ChatGPTApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
32
|
return {
|
|
33
33
|
/**
|
|
34
|
-
* An interactive client for
|
|
34
|
+
* An interactive client for VBAssist
|
|
35
35
|
* @summary Talk with ChatGPT
|
|
36
36
|
* @param {ChatMessage} [chatMessage]
|
|
37
37
|
* @param {*} [options] Override http request option.
|
|
@@ -82,7 +82,7 @@ export const ChatGPTApiFp = function(configuration?: Configuration) {
|
|
|
82
82
|
const localVarAxiosParamCreator = ChatGPTApiAxiosParamCreator(configuration)
|
|
83
83
|
return {
|
|
84
84
|
/**
|
|
85
|
-
* An interactive client for
|
|
85
|
+
* An interactive client for VBAssist
|
|
86
86
|
* @summary Talk with ChatGPT
|
|
87
87
|
* @param {ChatMessage} [chatMessage]
|
|
88
88
|
* @param {*} [options] Override http request option.
|
|
@@ -103,7 +103,7 @@ export const ChatGPTApiFactory = function (configuration?: Configuration, basePa
|
|
|
103
103
|
const localVarFp = ChatGPTApiFp(configuration)
|
|
104
104
|
return {
|
|
105
105
|
/**
|
|
106
|
-
* An interactive client for
|
|
106
|
+
* An interactive client for VBAssist
|
|
107
107
|
* @summary Talk with ChatGPT
|
|
108
108
|
* @param {ChatMessage} [chatMessage]
|
|
109
109
|
* @param {*} [options] Override http request option.
|
|
@@ -122,7 +122,7 @@ export const ChatGPTApiFactory = function (configuration?: Configuration, basePa
|
|
|
122
122
|
*/
|
|
123
123
|
export interface ChatGPTApiInterface {
|
|
124
124
|
/**
|
|
125
|
-
* An interactive client for
|
|
125
|
+
* An interactive client for VBAssist
|
|
126
126
|
* @summary Talk with ChatGPT
|
|
127
127
|
* @param {ChatMessage} [chatMessage]
|
|
128
128
|
* @param {*} [options] Override http request option.
|
|
@@ -141,7 +141,7 @@ export interface ChatGPTApiInterface {
|
|
|
141
141
|
*/
|
|
142
142
|
export class ChatGPTApi extends BaseAPI implements ChatGPTApiInterface {
|
|
143
143
|
/**
|
|
144
|
-
* An interactive client for
|
|
144
|
+
* An interactive client for VBAssist
|
|
145
145
|
* @summary Talk with ChatGPT
|
|
146
146
|
* @param {ChatMessage} [chatMessage]
|
|
147
147
|
* @param {*} [options] Override http request option.
|