From 4ddd9135f0e12c4f32a2895cc737775e42641efb Mon Sep 17 00:00:00 2001 From: Mark Pollack Date: Mon, 23 Dec 2024 13:13:36 -0500 Subject: [PATCH] Update to 1.0 M5 release --- agents/reflection/pom.xml | 6 +++--- kotlin/kotlin-function-callback/pom.xml | 2 +- .../KotlinFunctionCallbackApplication.kt | 2 +- kotlin/kotlin-hello-world/pom.xml | 4 ++-- kotlin/rag-with-kotlin/pom.xml | 2 +- misc/openai-streaming-response/pom.xml | 4 ++-- misc/spring-ai-java-function-callback/pom.xml | 4 ++-- .../SpringAiJavaFunctionCallbackApplication.java | 2 +- model-context-protocol/brave/pom.xml | 2 +- model-context-protocol/filesystem/pom.xml | 2 +- model-context-protocol/sqlite/chatbot/pom.xml | 2 +- model-context-protocol/sqlite/simple/pom.xml | 2 +- models/chat/helloworld/pom.xml | 2 +- 13 files changed, 18 insertions(+), 18 deletions(-) diff --git a/agents/reflection/pom.xml b/agents/reflection/pom.xml index 4a44d10..77927c6 100644 --- a/agents/reflection/pom.xml +++ b/agents/reflection/pom.xml @@ -9,9 +9,9 @@ com.example - ai-openai-helloworld + ai-openai-reflection-example 0.0.1-SNAPSHOT - ai-openai-helloworld + ai-openai-reflection-example Simple AI Application using OpenAPI Service 17 @@ -22,7 +22,7 @@ org.springframework.ai spring-ai-bom - 1.0.0-SNAPSHOT + 1.0.0-M5 pom import diff --git a/kotlin/kotlin-function-callback/pom.xml b/kotlin/kotlin-function-callback/pom.xml index 180d20e..b514f3c 100644 --- a/kotlin/kotlin-function-callback/pom.xml +++ b/kotlin/kotlin-function-callback/pom.xml @@ -29,7 +29,7 @@ 17 1.9.25 - 1.0.0-SNAPSHOT + 1.0.0-M5 diff --git a/kotlin/kotlin-function-callback/src/main/kotlin/com/example/kotlin_function_callback/KotlinFunctionCallbackApplication.kt b/kotlin/kotlin-function-callback/src/main/kotlin/com/example/kotlin_function_callback/KotlinFunctionCallbackApplication.kt index 4354677..dbfffd9 100644 --- a/kotlin/kotlin-function-callback/src/main/kotlin/com/example/kotlin_function_callback/KotlinFunctionCallbackApplication.kt +++ b/kotlin/kotlin-function-callback/src/main/kotlin/com/example/kotlin_function_callback/KotlinFunctionCallbackApplication.kt @@ -41,10 +41,10 @@ class Config { @Bean fun weatherFunctionInfo(currentWeather: (WeatherRequest) -> WeatherResponse): FunctionCallback { return FunctionCallback.builder() + .function("WeatherInfo", currentWeather) .description( "Find the weather conditions, forecasts, and temperatures for a location, like a city or state." ) - .function("WeatherInfo", currentWeather) .inputType(WeatherRequest::class.java) .build() } diff --git a/kotlin/kotlin-hello-world/pom.xml b/kotlin/kotlin-hello-world/pom.xml index 2133863..a0f280b 100644 --- a/kotlin/kotlin-hello-world/pom.xml +++ b/kotlin/kotlin-hello-world/pom.xml @@ -29,7 +29,7 @@ 17 1.9.25 - 1.0.0-SNAPSHOT + 1.0.0-M5 @@ -69,7 +69,7 @@ org.springframework.ai spring-ai-bom - ${spring-ai.version} + 1.0.0-M5 pom import diff --git a/kotlin/rag-with-kotlin/pom.xml b/kotlin/rag-with-kotlin/pom.xml index d2c0982..3543577 100644 --- a/kotlin/rag-with-kotlin/pom.xml +++ b/kotlin/rag-with-kotlin/pom.xml @@ -29,7 +29,7 @@ 17 1.9.25 - 1.0.0-SNAPSHOT + 1.0.0-M5 diff --git a/misc/openai-streaming-response/pom.xml b/misc/openai-streaming-response/pom.xml index 91b901a..9812c93 100644 --- a/misc/openai-streaming-response/pom.xml +++ b/misc/openai-streaming-response/pom.xml @@ -28,7 +28,7 @@ 17 - 1.0.0-M4 + 1.0.0-M5 @@ -60,7 +60,7 @@ org.springframework.ai spring-ai-bom - ${spring-ai.version} + 1.0.0-M5 pom import diff --git a/misc/spring-ai-java-function-callback/pom.xml b/misc/spring-ai-java-function-callback/pom.xml index cf42363..a1be259 100644 --- a/misc/spring-ai-java-function-callback/pom.xml +++ b/misc/spring-ai-java-function-callback/pom.xml @@ -28,7 +28,7 @@ 17 - 1.0.0-M4 + 1.0.0-M5 @@ -51,7 +51,7 @@ org.springframework.ai spring-ai-bom - ${spring-ai.version} + 1.0.0-M5 pom import diff --git a/misc/spring-ai-java-function-callback/src/main/java/com/example/java_ai_function_callback/SpringAiJavaFunctionCallbackApplication.java b/misc/spring-ai-java-function-callback/src/main/java/com/example/java_ai_function_callback/SpringAiJavaFunctionCallbackApplication.java index cca2252..c26268c 100644 --- a/misc/spring-ai-java-function-callback/src/main/java/com/example/java_ai_function_callback/SpringAiJavaFunctionCallbackApplication.java +++ b/misc/spring-ai-java-function-callback/src/main/java/com/example/java_ai_function_callback/SpringAiJavaFunctionCallbackApplication.java @@ -57,10 +57,10 @@ public class SpringAiJavaFunctionCallbackApplication { @Bean public FunctionCallback weatherFunctionInfo(Function currentWeather) { return FunctionCallback.builder() + .function("WeatherInfo", currentWeather) .description( "Find the weather conditions, forecasts, and temperatures for a location, like a city or state." ) - .function("WeatherInfo", currentWeather) .inputType(WeatherRequest.class) .build(); } diff --git a/model-context-protocol/brave/pom.xml b/model-context-protocol/brave/pom.xml index c309c2b..0c77376 100644 --- a/model-context-protocol/brave/pom.xml +++ b/model-context-protocol/brave/pom.xml @@ -22,7 +22,7 @@ org.springframework.ai spring-ai-bom - 1.0.0-M4 + 1.0.0-M5 pom import diff --git a/model-context-protocol/filesystem/pom.xml b/model-context-protocol/filesystem/pom.xml index 48a6ef0..85540a5 100644 --- a/model-context-protocol/filesystem/pom.xml +++ b/model-context-protocol/filesystem/pom.xml @@ -22,7 +22,7 @@ org.springframework.ai spring-ai-bom - 1.0.0-M4 + 1.0.0-M5 pom import diff --git a/model-context-protocol/sqlite/chatbot/pom.xml b/model-context-protocol/sqlite/chatbot/pom.xml index 89f3ce4..2aa230f 100644 --- a/model-context-protocol/sqlite/chatbot/pom.xml +++ b/model-context-protocol/sqlite/chatbot/pom.xml @@ -22,7 +22,7 @@ org.springframework.ai spring-ai-bom - 1.0.0-M4 + 1.0.0-M5 pom import diff --git a/model-context-protocol/sqlite/simple/pom.xml b/model-context-protocol/sqlite/simple/pom.xml index 71aa666..93217ab 100644 --- a/model-context-protocol/sqlite/simple/pom.xml +++ b/model-context-protocol/sqlite/simple/pom.xml @@ -22,7 +22,7 @@ org.springframework.ai spring-ai-bom - 1.0.0-M4 + 1.0.0-M5 pom import diff --git a/models/chat/helloworld/pom.xml b/models/chat/helloworld/pom.xml index 4a44d10..8ade50b 100644 --- a/models/chat/helloworld/pom.xml +++ b/models/chat/helloworld/pom.xml @@ -22,7 +22,7 @@ org.springframework.ai spring-ai-bom - 1.0.0-SNAPSHOT + 1.0.0-M5 pom import