Qore OpenAiDataProvider Module Reference 1.3
Loading...
Searching...
No Matches
OpenAiThreadsDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace OpenAiDataProvider {
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
39protected:
41 const ChildMap = ...;
42
43
44public:
45
47 constructor(*RestClient rest) ;
48
49
51 constructor(hash<auto> options) ;
52
53
55 string getName();
56
57
59 *list<hash<DataProviderSummaryInfo>> getChildProviderSummaryInfo();
60
61
63
65protected:
67public:
68
69
71
75protected:
76 *AbstractDataProvider getChildProviderImpl(string name);
77public:
78
79
81protected:
82 hash<DataProviderInfo> getStaticInfoImpl();
83public:
84
85};
86};
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 OpenAiThreadsDataProvider.qc.dox.h:28
const ProviderSummaryInfo
Provider summary info.
Definition OpenAiThreadsDataProvider.qc.dox.h:36
constructor(hash< auto > options)
Creates the object from constructor options.
*list< hash< DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
const ChildMap
Child data providers.
Definition OpenAiThreadsDataProvider.qc.dox.h:41
string getName()
Returns the data provider name.
const ProviderInfo
Provider info.
Definition OpenAiThreadsDataProvider.qc.dox.h:32
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
constructor(*RestClient rest)
Creates the object from the arguments.
Qore OpenAiDataProvider module definition.
Definition OpenAiAssistantCreateDataProvider.qc.dox.h:26