diff --git a/spring-ai-core/src/main/kotlin/org/springframework/ai/chat/client/ChatClientExtensions.kt b/spring-ai-core/src/main/kotlin/org/springframework/ai/chat/client/ChatClientExtensions.kt new file mode 100644 index 00000000000..40a4c6ffd84 --- /dev/null +++ b/spring-ai-core/src/main/kotlin/org/springframework/ai/chat/client/ChatClientExtensions.kt @@ -0,0 +1,32 @@ +/* + * Copyright 2023-2024 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.springframework.ai.chat.client + +import org.springframework.ai.chat.model.ChatResponse +import org.springframework.core.ParameterizedTypeReference + +/** + * Extensions for [ChatClient] providing a reified generic adapters for `entity` and `responseEntity` + * + * @author Josh Long + */ + +inline fun ChatClient.CallResponseSpec.entity(): T = + entity(object : ParameterizedTypeReference() {}) as T + +inline fun ChatClient.CallResponseSpec.responseEntity(): ResponseEntity = + responseEntity(object : ParameterizedTypeReference() {}) diff --git a/spring-ai-core/src/test/kotlin/org/springframework/ai/chat/client/ChatClientExtensionsTests.kt b/spring-ai-core/src/test/kotlin/org/springframework/ai/chat/client/ChatClientExtensionsTests.kt new file mode 100644 index 00000000000..63b58b90dd1 --- /dev/null +++ b/spring-ai-core/src/test/kotlin/org/springframework/ai/chat/client/ChatClientExtensionsTests.kt @@ -0,0 +1,47 @@ +/* + * Copyright 2023-2024 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.springframework.ai.chat.client + +import io.mockk.every +import io.mockk.mockk +import io.mockk.verify +import org.junit.jupiter.api.Test +import org.springframework.ai.chat.model.ChatResponse +import org.springframework.core.ParameterizedTypeReference + +class ChatClientExtensionsTests { + + data class Joke(val setup: String, val punchline: String) + + @Test + fun responseEntity() { + val crs = mockk() + val re = mockk>() + every { crs.responseEntity() } returns re + crs.responseEntity() + verify { crs.responseEntity(object : ParameterizedTypeReference() {}) } + } + + @Test + fun entity() { + val crs = mockk() + val joke = mockk() + every { crs.entity(any>()) } returns joke + crs.entity() + verify { crs.entity(object : ParameterizedTypeReference(){}) } + } +}