We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6ac663 commit 36ccb5eCopy full SHA for 36ccb5e
examples-java/src/main/java/com/embabel/example/repeatuntil/ReviseStoryUntilSatisfied.java
@@ -42,7 +42,7 @@ Story rewriteUntilSatisfied(
42
var writerPromptRunner = actionContext.ai()
43
.withLlm(LlmOptions.withModel(OpenAiModels.GPT_41_MINI).withTemperature(.8));
44
var reviewerPromptRunner = actionContext.ai()
45
- .withLlm(LlmOptions.withModel(OpenAiModels.GPT_41_MINI).withTemperature(0));
+ .withLlm(LlmOptions.withModel(OpenAiModels.GPT_41_MINI));
46
return RepeatUntilAcceptableBuilder
47
.returning(Story.class)
48
.withMaxIterations(7)
0 commit comments