Qore OpenAiDataProvider Module Reference 1.3
Loading...
Searching...
No Matches
OpenAiAssistantCreateDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
41
44
46 constructor(*RestClient rest) ;
47
48
50 string getName();
51
52
54
59protected:
60 auto doRequestImpl(auto req, *hash<auto> request_options);
61public:
62
63
65
67protected:
68 *DataProvider::AbstractDataProviderType getRequestTypeImpl();
69public:
70
71
73
75protected:
76 *DataProvider::AbstractDataProviderType getResponseTypeImpl();
77public:
78
79
81protected:
82 hash<DataProviderInfo> getStaticInfoImpl();
83public:
84
85};
86
88class OpenAiAssistantToolDataType : public HashDataType {
89
90public:
92 const Fields = ...;
93
94
97
98};
99
102
104class OpenAiCodeInterpreterDataType : public HashDataType {
105
106public:
108 const Fields = ...;
109
110
113
114};
115
118
120class OpenAiVectorStoreDefinitionDataType : public HashDataType {
121
122public:
124 const Fields = ...;
125
126
129
130};
131
134
136class OpenAiVectorStoreDataType : public HashDataType {
137
138public:
140 const Fields = ...;
141
142
145
146};
147
150
152class OpenAiToolResourcesDataType : public HashDataType {
153
154public:
156 const Fields = ...;
157
158
161
162};
163
166
168class OpenAiAssistantCreateRequestType : public HashDataType {
169
170public:
172 const Fields = ...;
173
174
177
178};
179
182
184class OpenAiAssistantDataType : public HashDataType {
185
186public:
188 const Fields = ...;
189
190
193
194};
195
198};
The OpenAi data provider class.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:28
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
string getName()
Returns the data provider name.
constructor(*RestClient rest)
Creates the object from the arguments.
const ProviderSummaryInfo
Provider summary info.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:36
const ProviderInfo
Provider info.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:32
const ResponseType
Response type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:43
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
const RequestType
Request type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:40
*DataProvider::AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
*DataProvider::AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
The file upload request type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:168
const Fields
fields
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:172
Assistant type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:184
const Fields
fields
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:188
The assistant tool data type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:88
const Fields
fields
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:92
The code interpreter type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:104
const Fields
fields
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:108
The OpenAi data provider common base class.
Definition OpenAiDataProviderCommon.qc.dox.h:28
*RestClient::RestClient rest
The REST client object for API calls.
Definition OpenAiDataProviderCommon.qc.dox.h:54
The tool resources data type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:152
const Fields
fields
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:156
The vector store type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:136
const Fields
fields
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:140
The vector store definition type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:120
const Fields
fields
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:124
Qore OpenAiDataProvider module definition.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:26
const OpenAiAssistantToolDataType
Constant for the assistant tool data type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:101
const OpenAiVectorStoreDefinitionDataType
Constant for the vector store definition type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:133
const OpenAiAssistantDataType
Assistant type constant.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:197
const OpenAiVectorStoreDataType
Constant for the vector store type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:149
const OpenAiAssistantCreateRequestType
File upload request type constant.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:181
const OpenAiToolResourcesDataType
Constant for the tool resources data type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:165
const OpenAiCodeInterpreterDataType
Constant for the code interpreter data type.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:117