-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenai.hpp
173 lines (145 loc) · 5.6 KB
/
openai.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#pragma once
#include <string>
#include <memory>
#include <vector>
#include <optional>
#include "http_client.hpp"
class OpenAI;
class ChatCompletion {
public:
struct Message {
std::string role;
std::string content;
// Builder pattern for fluent interface
static Message system(const std::string& content) {
return {"system", content};
}
static Message user(const std::string& content) {
return {"user", content};
}
static Message assistant(const std::string& content) {
return {"assistant", content};
}
};
struct CompletionChoice {
Message message;
int index;
std::string finish_reason;
};
struct Response {
std::vector<CompletionChoice> choices;
std::string id;
std::string model;
int64_t created;
};
class CreateParams {
public:
CreateParams& model(const std::string& m) { model_ = m; return *this; }
CreateParams& messages(const std::vector<Message>& msgs) { messages_ = msgs; return *this; }
CreateParams& max_tokens(int tokens) { max_tokens_ = tokens; return *this; }
CreateParams& temperature(float temp) { temperature_ = temp; return *this; }
CreateParams& stream(bool s) { stream_ = s; return *this; }
CreateParams& frequency_penalty(float penalty) { frequency_penalty_ = penalty; return *this; }
CreateParams& presence_penalty(float penalty) { presence_penalty_ = penalty; return *this; }
CreateParams& top_p(float p) { top_p_ = p; return *this; }
CreateParams& stop(const std::vector<std::string>& stop_sequences) { stop_ = stop_sequences; return *this; }
CreateParams& logprobs(bool enable) { logprobs_ = enable; return *this; }
CreateParams& top_logprobs(std::optional<int> n) { top_logprobs_ = n; return *this; }
CreateParams& response_format(const std::string& type) {
response_format_ = {{"type", type}};
return *this;
}
nlohmann::json to_json() const {
nlohmann::json payload;
payload["model"] = model_;
payload["max_tokens"] = max_tokens_;
payload["temperature"] = temperature_;
payload["stream"] = stream_;
payload["frequency_penalty"] = frequency_penalty_;
payload["presence_penalty"] = presence_penalty_;
payload["top_p"] = top_p_;
if (!stop_.empty()) {
payload["stop"] = stop_;
}
if (logprobs_) {
payload["logprobs"] = true;
if (top_logprobs_) {
payload["top_logprobs"] = *top_logprobs_;
}
}
if (!response_format_.empty()) {
payload["response_format"] = response_format_;
}
nlohmann::json messages = nlohmann::json::array();
for (const auto& msg : messages_) {
messages.push_back({
{"role", msg.role},
{"content", msg.content}
});
}
payload["messages"] = messages;
return payload;
}
private:
std::string model_;
std::vector<Message> messages_;
int max_tokens_ = 1024;
float temperature_ = 0.7;
bool stream_ = false;
float frequency_penalty_ = 0.0;
float presence_penalty_ = 0.0;
float top_p_ = 1.0;
std::vector<std::string> stop_;
bool logprobs_ = false;
std::optional<int> top_logprobs_;
nlohmann::json response_format_;
};
class Completions {
public:
Completions(OpenAI& client); // Declaration only
Response create(const CreateParams& params); // Declaration only
private:
OpenAI& client_;
static Response parse_response(const nlohmann::json& json);
};
};
class OpenAI {
public:
OpenAI(const std::string& api_key, const std::string& base_url = "https://api.openai.com/v1/chat/completions")
: api_key_(api_key), base_url_(base_url) {}
struct Chat {
Chat(OpenAI& client) : completions(client) {}
ChatCompletion::Completions completions;
};
Chat chat{*this};
private:
std::string api_key_;
std::string base_url_;
friend class ChatCompletion::Completions;
};
inline ChatCompletion::Completions::Completions(OpenAI& client) : client_(client) {}
inline ChatCompletion::Response ChatCompletion::Completions::create(const CreateParams& params) {
auto response = HttpClient::post_json(
client_.base_url_,
client_.api_key_,
params.to_json()
);
return parse_response(response.json);
}
inline ChatCompletion::Response ChatCompletion::Completions::parse_response(const nlohmann::json& json) {
ChatCompletion::Response response;
response.id = json["id"].get<std::string>();
response.model = json["model"].get<std::string>();
response.created = json["created"].get<int64_t>();
for (const auto& choice : json["choices"]) {
ChatCompletion::CompletionChoice completion_choice;
completion_choice.index = choice["index"].get<int>();
completion_choice.message = {
choice["message"]["role"].get<std::string>(),
choice["message"]["content"].get<std::string>()
};
completion_choice.finish_reason = choice["finish_reason"].get<std::string>();
response.choices.push_back(completion_choice);
}
return response;
}