01–SpringAI接入大模型,chatgpt,Java接入人工智能大模型
文章目录
一、准备工作?
①:环境准备
- jdk版本:jdk17
- idea版本:idea2024.1
- 要有一个 open ai-key
- 能【ke】【学】【上】【wang】
二、创建一个springAI项目
①:创建一个根项目
我们先创建一个根项目、之后在根项目中创建AI模块
- 把jdk17添加到项目结构中
(不然后面可能会报错 setSdk: sdk '17' type 'JavaSDK' is not registered in ProjectJdkTable)
②:创建一个SpringAI模块
- springBoot、jdk17
- 选择依赖
- 创建
01.解决下载spring-ai依赖报错问题
- 下载依赖报错
- 将配置阿里云的
mirror
注释掉使用原生的即可
- 然后在重新加载maven
- 如果还不行,就
重新创建项目
或者取消maven链接在将项目添加为maven
02. 添加api-key配置(yml)
spring:application:name: spring-ai-01-chat
ai:openai:api-key: ${open-ai-key}base-url: ${open-ai-uri}server:port:8899
03.添加控制层简单测试
@RequestMapping("/ai/chat")publicStringchat(@RequestParam(value ="msg")String msg){return openAiChatModel.call(msg);}
04.测试
- 已经根据问题给出了回答
3️⃣:测试使用gpt-4模型
方法一 添加控制层代码
/**
* 调用chat2
*
* @param msg
* @return
*/@RequestMapping("/ai/chat2")publicObjectchat2(@RequestParam(value ="msg")String msg){ChatResponse response = openAiChatModel.call(newPrompt(msg,OpenAiChatOptions.builder().withModel("gpt-4-32k")// 模型名称 gpt的版本,32k是参数量.withTemperature(0.4F)// 温度,值越小,结果越确定.build()));return response.getResult().getOutput().getContent();}
方法二 配置文件中配置
spring:application:name: spring-ai-01-chat
ai:openai:api-key: ${open-ai-key}base-url: ${open-ai-uri}chat:options:model: gpt-4-32k
temperature:0.3server:port:8899
02.测试
4️⃣:使用Stream方式一个一个的返回
/**
* 调用chat3(使用stream流方式)
*
* @param msg
* @return
*/@RequestMapping("/ai/chat3")publicObjectchat3(@RequestParam(value ="msg")String msg){Flux<ChatResponse> stream = openAiChatModel.stream(newPrompt(msg,OpenAiChatOptions.builder().withTemperature(0.3F)// 温度,值越小,结果越确定.build()));
stream.toStream().forEach(res ->{System.out.println(res.getResult().getOutput().getContent());});return stream.collectList();// 数据的序列,一序列的数据,一个一个的数据返回}
- 测试
三、Ai图像程序API结构
1️⃣:方式一
01. 代码
@RestControllerpublicclassImgController{@ResourceprivateOpenAiImageModel openAiImageModel;/**
* 生成图片(方式一)
* @param msg
* @return
*/@RequestMapping("/ai/img")publicObjectgetImg(String msg){ImageResponse imageResponse = openAiImageModel.call(newImagePrompt(msg));System.out.println("imageResponse"+ imageResponse);return imageResponse.getResult().getOutput();}}
02. 测试
2️⃣: 方式二(设置图片属性)
01. 代码
/**
* 生成图片(方式二)设置图片属性
* @param msg
* @return
*/@RequestMapping("/ai/img2")publicObjectgetImg2(String msg){ImageResponse imageResponse = openAiImageModel.call(newImagePrompt(msg,OpenAiImageOptions.builder().withQuality("hd")// 图片质量(高清).withN(1)// 生成图片数量.withWidth(1024)// 图片宽度.withHeight(1024)// 图片高度.build()));System.out.println("imageResponse"+ imageResponse);return imageResponse.getResult().getOutput().getUrl();}
02. 测试
四、音频转文字
①:方式一
01. 代码:
@RestControllerpublicclassTranscriptionController{@ResourceprivateOpenAiAudioTranscriptionModel openAiAudioTranscriptionModel;/**
* 语言转文本(方式一)
*
* @return
*/@RequestMapping("/ai/audio")publicObjectaudio(){ClassPathResource resource =newClassPathResource("20240705.mp3");return openAiAudioTranscriptionModel.call(resource);}}
02. 测试
- 我用的这个 ai-key 不支持语言转文字,,,
五、文字转语言
①:方式一
01. 代码
- controller 接口
@RestControllerpublicclassSpeechController{@ResourceprivateOpenAiAudioSpeechModel openAiAudioSpeechModel;/**
* 文本转语音(方式一)
*
* @return
*/@RequestMapping("/ai/speech")publicObjectaudio(String msg){try{byte[] bytes = openAiAudioSpeechModel.call(msg);// 指定要写入的文件路径String filePath ="D:\\KuGou\\KugouMusic\\audiofile.mp3";FileUtil.writeBytesToFile(bytes, filePath);return"转换成功";}catch(IOException e){
e.printStackTrace();return"转换失败";}}}
- 工具类
importjava.io.FileOutputStream;importjava.io.IOException;importjava.nio.file.Files;importjava.nio.file.Paths;publicclassFileUtil{/**
* 将字节数组写入指定路径的文件中
*
* @param bytes 字节数组
* @param filePath 文件路径
* @throws IOException 如果写入过程中发生错误
*/publicstaticvoidwriteBytesToFile(byte[] bytes,String filePath)throwsIOException{try(FileOutputStream fos =newFileOutputStream(filePath)){
fos.write(bytes);}}/**
* 使用 Java NIO 的 Files 类将字节数组写入文件
*
* @param bytes 字节数组
* @param filePath 文件路径
* @throws IOException 如果写入过程中发生错误
*/publicstaticvoidwriteBytesToFileNIO(byte[] bytes,String filePath)throwsIOException{Files.write(Paths.get(filePath), bytes);}}
02.测试
- 我用的这个 ai-key 不支持语言转文字,,,
六、多模态API
①:方式一
01. 代码
@RestControllerpublicclassMultiModelController{@ResourceprivateChatClient chatModel;/**
* 多模态(方式一)
*
* @return
*/@RequestMapping("/ai/multi")publicObjectmulti(String msg,String imageUrl){var userMessage =newUserMessage(msg,List.of(newMedia(MimeTypeUtils.IMAGE_PNG, imageUrl)));ChatResponse response = chatModel.call(newPrompt(List.of(userMessage),OpenAiChatOptions.builder().withModel(OpenAiApi.ChatModel.GPT_4_VISION_PREVIEW.getValue()).build()));return response.getResult().getOutput();}}
本文转载自: https://blog.csdn.net/cygqtt/article/details/139862511
版权归原作者 七@归七 所有, 如有侵权,请联系我们删除。
版权归原作者 七@归七 所有, 如有侵权,请联系我们删除。