当前位置:   article > 正文

Java接入ChatGPT接口简单示例_接入chartgpt

接入chartgpt
我们定义了一个名为ChartGPTConfig的类,它有两个私有成员变量apiKey和apiUrl,分别表示ChartGPT的API密钥和API URL。
public class ChartGPTConfig {
    private final String apiKey;
    private final String apiUrl;

    public ChartGPTConfig(String apiKey, String apiUrl) {
        this.apiKey = apiKey;
        this.apiUrl = apiUrl;
    }

    public String getApiKey() {
        return apiKey;
    }

    public String getApiUrl() {
        return apiUrl;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
简单调用示例:
public class ChartGPTExample {
    public static void main(String[] args) {
        // 创建ChartGPTConfig对象,设置API密钥和API URL
        ChartGPTConfig config = new ChartGPTConfig("YOUR_API_KEY", "https://api.chartgpt.com/v1/generate");
        String query = "What is the population of China?"; // 替换为您的查询
        try {
            // 调用ChartGPT API
            String response = callChartGPTAPI(config, query);
            System.out.println("Response: " + response);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private static String callChartGPTAPI(ChartGPTConfig config, String query) throws IOException {
        // 创建OkHttpClient实例
        OkHttpClient client = new OkHttpClient();
        // 构建API请求URL
        String url = config.getApiUrl() + "?query=" + query;

        // 创建HTTP请求
        Request request = new Request.Builder()
                .url(url)
                .addHeader("Authorization", "Bearer " + config.getApiKey())
                .build();

        // 发送HTTP请求并获取响应
        try (Response response = client.newCall(request).execute()) {
            return response.body().string();
        }
    }
}
  • 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

示例中使用了OkHttp库来发送HTTP请求,可以通过Maven或Gradle将依赖添加。

Maven引入OkHttp依赖:
<dependency>
    <groupId>com.squareup.okhttp3</groupId>
    <artifactId>okhttp</artifactId>
	<version>4.9.1</version>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
Gradle引入OkHttp依赖:
// 其他配置
dependencies {
    // OkHttp
    implementation 'com.squareup.okhttp3:okhttp:4.9.1'
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/1020612
推荐阅读
相关标签
  

闽ICP备14008679号