Skip to content

Commit ae75b37

Browse files
committed
Update AgentScopeBuilder API usage
1 parent 4ac27d3 commit ae75b37

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ agent(name = "FactChecker", description = "Check content for factual accuracy")
301301
{ context -> /* extract assertions with this LLM */ }
302302
},
303303
merge = { list, context -> /* rationalize overlapping claims */ }
304-
).parallelize()
304+
)
305305
}
306306

307307
transformation<RationalizedFactualAssertions, FactCheck> {

examples-kotlin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ agent(name = "FactChecker", description = "Check content for factual accuracy")
244244
{ context -> /* extract assertions with this LLM */ }
245245
},
246246
merge = { list, context -> /* rationalize overlapping claims */ }
247-
).parallelize()
247+
)
248248
}
249249

250250
transformation<RationalizedFactualAssertions, FactCheck> {

examples-kotlin/src/main/kotlin/com/embabel/example/factchecker/factChecker.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ fun factCheckerAgent(
135135
""".trimIndent()
136136
)
137137
},
138-
).parallelize()
138+
)
139139
}
140140

141141
transformation<RationalizedFactualAssertions, FactCheck> { operationContext ->

0 commit comments

Comments
 (0)