We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f7a555 commit 6a87171Copy full SHA for 6a87171
core/src/main/kotlin/cc/unitmesh/devti/llm2/LLMProvider2.kt
@@ -137,7 +137,7 @@ abstract class LLMProvider2 protected constructor(
137
return SessionMessageItem(Message("system", "response body is null"))
138
} else {
139
val content = body.string()
140
- println("response: $content")
+ logger.info("response: $content")
141
val result: String = runCatching<String> {
142
val result: String? = JsonPath.parse(content)?.read(responseResolver)
143
result ?: throw java.lang.IllegalStateException("cannot parse with responseResolver: ${responseResolver}, ori data: $content")
0 commit comments