前提:要有chatgpt账号,不会注册的关注抖音:21402780125,有免费教程!!
要在 C++ 中调用 ChatGPT API,您可以使用以下步骤:
-
首先,安装 C++ 的 HTTP 客户端库,例如 libcurl 或者 Poco。
-
创建一个 HTTP 客户端实例,以便向 OpenAI API 发送 HTTP 请求。
-
在 HTTP 请求中添加必要的请求头和参数,例如认证凭证、输入提示文本和生成文本参数等。
-
执行 HTTP 请求并接收 HTTP 响应。
-
解析 HTTP 响应并提取响应数据,例如生成文本、得分等。
-
关闭 HTTP 客户端连接并释放相关资源。
以下是 C++ 调用 ChatGPT API 的示例代码(使用 libcurl 库):
#include <iostream> #include <curl/curl.h> int main() { CURL* curl = curl_easy_init(); if (curl) { const char* url = "https://api.openai.com/v1/engines/davinci-codex/completions"; struct curl_slist* headers = nullptr; headers = curl_slist_append(headers, "Content-Type: application/json"); headers = curl_slist_append(headers, "Authorization: Bearer YOUR_API_SECRET_KEY"); const char* json_data = "{\"prompt\": \"Hello, how are you?\", \"temperature\": 0.7, \"max_tokens\": 100}"; curl_easy_setopt(curl, CURLOPT_URL, url); curl_easy_setopt(curl, CURLOPT_POST, 1L); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); curl_easy_setopt(curl, CURLOPT_POSTFIELDS, json_data); CURLcode res = curl_easy_perform(curl); if (res == CURLE_OK) { long status_code = 0; curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &status_code); if (status_code == 200) { std::string response; curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response); std::cout << response << std::endl; } else { std::cerr << "HTTP Error: " << status_code << std::endl; } } else { std::cerr << "curl_easy_perform() failed: " << curl_easy_strerror(res) << std::endl; } curl_easy_cleanup(curl); curl_slist_free_all(headers); } return 0; }
标签:API,HTTP,c++,headers,api,easy,chatgpt,curl,CURLOPT From: https://www.cnblogs.com/ow-dwh/p/17153582.html