Qore OpenAiDataProvider Module Reference 1.3
Loading...
Searching...
No Matches
OpenAiRunUpdateDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace OpenAiDataProvider {
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
41
44
45protected:
47 string thread_id;
48
50 hash<auto> run;
51
52public:
53
55 constructor(*RestClient rest, string thread_id, hash<auto> run) ;
56
57
59 string getName();
60
61
63
68protected:
69 auto doRequestImpl(auto req, *hash<auto> request_options);
70public:
71
72
74
76protected:
77 *DataProvider::AbstractDataProviderType getRequestTypeImpl();
78public:
79
80
82
84protected:
85 *DataProvider::AbstractDataProviderType getResponseTypeImpl();
86public:
87
88
90protected:
91 hash<DataProviderInfo> getStaticInfoImpl();
92public:
93
94};
95
97class OpenAiRunUpdateRequestType : public HashDataType {
98
99public:
101 const Fields = ...;
102
103
106
107};
108
111};
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 OpenAi data provider class.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:28
hash< auto > run
The run info.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:50
const ProviderInfo
Provider info.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:32
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
const ResponseType
Response type.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:43
string thread_id
The thread ID.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:47
constructor(*RestClient rest, string thread_id, hash< auto > run)
Creates the object from the arguments.
const ProviderSummaryInfo
Provider summary info.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:36
const RequestType
Request type.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:40
string getName()
Returns the data provider name.
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
*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 run tool data type.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:97
const Fields
fields
Definition OpenAiRunUpdateDataProvider.qc.dox.h:101
Qore OpenAiDataProvider module definition.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:26
const OpenAiRunDataType
Run type constant.
Definition OpenAiRunCreateDataProvider.qc.dox.h:232
const OpenAiRunUpdateRequestType
Constant for the run tool data type.
Definition OpenAiRunUpdateDataProvider.qc.dox.h:110