摘要: 1、在RabbitMQ的管理后台新建交换机(exchange); 名称(Name): **ParkingExchange** 类型(Type): **fanout** 持久化(Durability): **Durable** 2、在RabbitMQ的管理后台新建队列(queue); 名称(Name) 阅读全文
posted @ 2024-08-28 11:55 DHaiLin 阅读(5) 评论(0) 推荐(0) 编辑
摘要: SHOW PROCESSLIST 是显示用户正在运行的线程,需要注意的是,除了root用户能看到所有正在运行的线程外,其他用户都只能看到自己正在运行的线程,看不到其它用户正在运行的线程。除非单独个这个用户赋予了PROCESS权限。 通常我们通过top检查发现mysqlCPU或者iowait过高 那么 阅读全文
posted @ 2024-07-24 15:33 DHaiLin 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 接上篇:Spring AI(大模型工具Ollama介绍) 1、Ollama大模型代码验证 pom.xml引入jar <!-- spring-ai-ollama 的starter依赖,启动依赖 --> <dependency> <groupId>org.springframework.ai</grou 阅读全文
posted @ 2024-07-19 14:10 DHaiLin 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 接上篇:Spring AI(多模态) 1、大模型工具Ollama介绍 本地搭建一套ollama大模型,不需要 open ai api key了,就可以进行功能上的开发; 官网:https://ollama.com/ 2、大模型工具Ollama下载 官网下载地址:https://ollama.com/ 阅读全文
posted @ 2024-07-19 10:54 DHaiLin 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 接上篇:Spring AI(音频转文本、文本转音频) 1、多模态(可以发一段文字和一张图片) 示例代码如下: /** * 多模态 * @author ithailin */ @RestController @RequestMapping("/ai") public class MultiModelC 阅读全文
posted @ 2024-07-18 17:20 DHaiLin 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 接上篇:Spring AI(绘图) 1、音频转文本 application.yml新增配置 # 语音转文本 audio: transcription: options: # 模型版本 model: whisper-1 完整配置如下: spring: application: name: spring 阅读全文
posted @ 2024-07-18 15:17 DHaiLin 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 接上篇:Spring AI(聊天程序) application.yml新增配置 image模型版本、数量、高度等相关参数配置,若当前代码中和application配置文件中同时声明,则代码中的配置会覆盖application配置文件中的 # ai绘图设置 image: options: # 模型版本 阅读全文
posted @ 2024-07-16 14:32 DHaiLin 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 接上篇:Spring AI(基础开发准备) 1、聊天程序(调用一次接口) /** * 聊天程序 * @author ithailin */ @RestController @RequestMapping("/ai") public class ChatController { private sta 阅读全文
posted @ 2024-07-15 11:56 DHaiLin 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 接上篇:Sping AI(初步了解) 1、开发环境准备 Spring Boot版本:3.2.4(当前使用) JDK17:https://www.oracle.com/cn/java/technologies/downloads/#jdk17-windows idea版本2020不支持JDK17需要使 阅读全文
posted @ 2024-07-10 14:35 DHaiLin 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 一、什么是Spring AI 二、Spring AI的主要特点 Spring AI提供的API支持跨人工智能提供商的聊天、文本到图像、嵌入模型等,同时支持同步喝流API选项; 1、Chat Models (聊天模型) OpenAI Azure Open AI Amazon Bedrock Coher 阅读全文
posted @ 2024-07-10 11:36 DHaiLin 阅读(252) 评论(0) 推荐(0) 编辑