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 46dba9c commit 8312cc4Copy full SHA for 8312cc4
src/main/kotlin/dev/storozhenko/familybot/feature/talking/services/rag/RagService.kt
@@ -36,7 +36,7 @@ class RagService(
36
if (text.length <= 3) return
37
if (context.message.messageId == null) return
38
val embeddings = getEmbedding(text)
39
-
+ log.info { "Adding new message to rag" }
40
ragRepository.add(context, embeddings.first())
41
42
} catch (e: Exception) {
0 commit comments