Add extension function for Chatclient.CalLResponseSpec.entity(Class<?>)

- This makes ChatClient easier to use from Kotlin
This commit is contained in:
Josh Long
2024-11-12 12:02:50 -08:00
committed by Mark Pollack
parent fb0d99dc37
commit 944fb996e4
2 changed files with 79 additions and 0 deletions

View File

@@ -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 <reified T> ChatClient.CallResponseSpec.entity(): T =
entity(object : ParameterizedTypeReference<T>() {}) as T
inline fun <reified T> ChatClient.CallResponseSpec.responseEntity(): ResponseEntity<ChatResponse, T> =
responseEntity(object : ParameterizedTypeReference<T>() {})

View File

@@ -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<ChatClient.CallResponseSpec>()
val re = mockk<ResponseEntity<ChatResponse, Joke>>()
every { crs.responseEntity<Joke>() } returns re
crs.responseEntity<Joke>()
verify { crs.responseEntity(object : ParameterizedTypeReference<Joke>() {}) }
}
@Test
fun entity() {
val crs = mockk<ChatClient.CallResponseSpec>()
val joke = mockk<Joke>()
every { crs.entity(any<ParameterizedTypeReference<Joke>>()) } returns joke
crs.entity<Joke>()
verify { crs.entity(object : ParameterizedTypeReference<Joke>(){}) }
}
}