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 738f5dd commit 2659687Copy full SHA for 2659687
src/main/kotlin/com/cjcrafter/openai/chat/FinishReason.kt renamed to src/main/kotlin/com/cjcrafter/openai/FinishReason.kt
@@ -1,4 +1,4 @@
1
-package com.cjcrafter.openai.chat
+package com.cjcrafter.openai
2
3
/**
4
* [FinishReason] wraps the possible reasons that a generation model may stop
@@ -23,9 +23,9 @@ enum class FinishReason {
23
LENGTH,
24
25
26
- * [TEMPERATURE] is a rare occurrence, and only happens when the
27
- * [ChatRequest.temperature] is low enough that it is impossible for the
28
- * model to continue generating text.
+ * [CONTENT_FILTER] occurs due to a flag from OpenAI's content filters.
+ * This occurrence is rare, and usually only happens when you blatantly
+ * misuse/violate OpenAI's terms.
29
*/
30
- TEMPERATURE
+ CONTENT_FILTER
31
}
0 commit comments