()
| 11 | |
| 12 | public class ChatGLMUsage { |
| 13 | public static void usage() |
| 14 | throws NoApiKeyException, ApiException, InputRequiredException { |
| 15 | GeneralHalfDuplexApi gen = new GeneralHalfDuplexApi(); |
| 16 | ChatGLMParam param = ChatGLMParam.builder().model("chatglm-6b-v2").prompt("介绍下杭州").history(Arrays.asList()).build(); |
| 17 | DashScopeResult result = gen.call(param); |
| 18 | System.out.println(JsonUtils.toJson(result)); |
| 19 | } |
| 20 | |
| 21 | public static void main(String[] args) { |
| 22 | try { |