Skip to content

Commit b422e4d

Browse files
committed
Remove confusing comments
1 parent 2458021 commit b422e4d

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

src/main/java/com/embabel/template/agent/WriteAndReviewAgent.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,9 @@ Story craftStory(UserInput userInput, OperationContext context) {
139139
return context.ai()
140140
// Higher temperature for more creative output
141141
.withLlm(LlmOptions
142-
.withAutoLlm()
143-
// You can also use a specific model here
144-
// .withModel(OpenAiModels.GPT_41_MINI)
145-
// Or specify a "role" you've configured in application.properties
146-
// .withLlmForRole("best")
147-
.withTemperature(.7))
142+
.withAutoLlm() // You can also choose a specific model or role here
143+
.withTemperature(.7)
144+
)
148145
.withPromptContributor(Personas.WRITER)
149146
.createObject(String.format("""
150147
Craft a short story in %d words or less.

0 commit comments

Comments
 (0)