赞
踩
目录
Spring Al与Springboot整合的步骤(本文仅讲解文本转声音的实现,关于gpt的其他东西,参考接下来的文章)
第一步:建项目:创建一个Spring Boot项目(JDK17起步);
2.1 加入spring-ai-openai-spring-boot-starter依赖;
2.3 配置项目依赖下载的仓库:(因为spring ai在中心仓库还没有依赖,所以需要去网站下载)
第三步:配文件(这个的api -key就是你自己的,如果没有私信我即可)
文本(中英文)转语音的实现方式(调用call方法,这个叫做同步API)
随着人工智能技术的迅猛发展,越来越多的应用程序开始集成人工智能功能,从而提供更智能、更个性化的体验。诸如ChatGPT等开放性大型语言模型的出现,使得自然语言处理和对话系统的开发变得更加便捷和普及。这些技术已经在社交媒体、客户服务、教育等领域展示出巨大的潜力,对于提升用户体验和提高工作效率起到了关键作用。
Spring Al的官网:https://spring.io/
Spring AI提供的API支持跨人工智能提供商的 聊天,文本到图像,和嵌入模型等,同时支持同步和流API选项;
开发springAl程序的前期准备准备工作
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
- </dependency>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-bom</artifactId>
- <version>${spring-ai.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <repositories>
- <repository>
- <id>spring-milestones</id>
- <name>Spring Milestones</name>
- <url>https://repo.spring.io/milestone</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- spring:
- ai:
- openai:
- api-key: (换成你的api-key)
- base-url: https://api.openai.com(分为代理地址和直连地址)
- @RestController
- public class TTSConreoller {
-
- @Resource
- private OpenAiAudioSpeechModel openAiAudioSpeechModel;
-
-
- @RequestMapping("/ai/tts")
- public Object tts(){
- String text ="在访谈中,当被问及热门剧集《我的阿勒泰》引发大众对悠闲生活方式的渴望,其对员工提倡一种怎样的观念时,董明珠说:“你可以打辞职报告,可以回去休闲,没有问题。我觉得是自己的选择。”这番话,随即便在网上掀起了讨论。";
- //这个就是把文本转为语音
- byte[] bytes = openAiAudioSpeechModel.call(text);
- //保存到一个位置上
- FileUtils.save2File("D:\\test.mp3",bytes);
- return "OK";
- }
这个是将字节数据,保存到文件中的一个工具类
- package com.powernode.util;
-
- import java.io.*;
-
- /**
- *java字节字节数组,写入文件中
- */
- public class FileUtils {
-
- public static boolean save2File(String fname, byte[] msg) {
- OutputStream fos = null;
- try{
- File file = new File(fname);
- File parent = file.getParentFile();
- boolean bool;
- if ((!parent.exists()) &&
- (!parent.mkdirs())) {
- return false;
- }
- fos = new FileOutputStream(file);
- fos.write(msg);
- fos.flush();
- return true;
- }catch (FileNotFoundException e){
- return false;
- }catch (IOException e){
- e.printStackTrace();
- return false;
- }
- finally{
- if (fos != null) {
- try{
- fos.close();
- }catch (IOException e) {}
- }
- }
- }
- }
5.1 程序的运行结果
上述就是关于Spring Boot 整合 Spring AI 实现项目接入ChatGPT,本文仅介绍了关于文本转音频实现方式,接下来的文章介绍关于音频翻译。
如果需要源码的可以访问:code-ai: 关于spring ai的各个练习
有任何问题可以私信我,以及欢迎大家加入下面的群聊来探讨。以及关于没有open ai的key 的也可以私信我
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。