From 1845bfccef7e1c057c25d52654aeef3c8c4376bb Mon Sep 17 00:00:00 2001 From: Ilayaperumal Gopinathan Date: Thu, 15 May 2025 15:20:07 +0100 Subject: [PATCH] Add Chat memory (in-memory chat memory repository) starter - Add Spring Boot starter for Chat memory with in-memory chat memory repository Signed-off-by: Ilayaperumal Gopinathan --- pom.xml | 1 + .../pom.xml | 52 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 spring-ai-spring-boot-starters/spring-ai-starter-model-chat-memory/pom.xml diff --git a/pom.xml b/pom.xml index 599bf8b4237..6c45eb4d619 100644 --- a/pom.xml +++ b/pom.xml @@ -194,6 +194,7 @@ spring-ai-spring-boot-starters/spring-ai-starter-model-zhipuai spring-ai-spring-boot-starters/spring-ai-starter-model-deepseek + spring-ai-spring-boot-starters/spring-ai-starter-model-chat-memory spring-ai-spring-boot-starters/spring-ai-starter-model-chat-memory-repository-cassandra spring-ai-spring-boot-starters/spring-ai-starter-model-chat-memory-repository-jdbc spring-ai-spring-boot-starters/spring-ai-starter-model-chat-memory-repository-neo4j diff --git a/spring-ai-spring-boot-starters/spring-ai-starter-model-chat-memory/pom.xml b/spring-ai-spring-boot-starters/spring-ai-starter-model-chat-memory/pom.xml new file mode 100644 index 00000000000..d409e7f6e0d --- /dev/null +++ b/spring-ai-spring-boot-starters/spring-ai-starter-model-chat-memory/pom.xml @@ -0,0 +1,52 @@ + + + + + 4.0.0 + + org.springframework.ai + spring-ai-parent + 1.0.0-SNAPSHOT + ../../pom.xml + + spring-ai-starter-model-chat-memory + jar + Spring AI Starter - Chat Memory + Spring AI Chat Memory Starter with In-memory chat memory repository + https://github.com/spring-projects/spring-ai + + + https://github.com/spring-projects/spring-ai + git://github.com/spring-projects/spring-ai.git + git@github.com:spring-projects/spring-ai.git + + + + + + org.springframework.boot + spring-boot-starter + + + + org.springframework.ai + spring-ai-autoconfigure-model-chat-memory + ${project.parent.version} + + + +