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 8ffd0cb commit f9989aaCopy full SHA for f9989aa
ychat/src/commonMain/kotlin/co/yml/ychat/entrypoint/impl/ImageGenerationsImpl.kt
@@ -41,7 +41,7 @@ internal class ImageGenerationsImpl(
41
42
override fun execute(prompt: String, callback: YChat.Callback<List<String>>) {
43
scope.launch {
44
- kotlin.runCatching { execute(prompt) }
+ runCatching { execute(prompt) }
45
.onSuccess { callback.onSuccess(it) }
46
.onFailure { callback.onError(it) }
47
}
0 commit comments