-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
112 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
kyo-llm/shared/src/main/scala/kyo/llm/thoughts/meta/Refine.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package kyo.llm.thoughts.meta | ||
|
||
import kyo.llm.ais._ | ||
|
||
case class Refine[T]( | ||
initialSolution: T, | ||
`Strategy produce a different solution`: String, | ||
alternativeSolution: T, | ||
`Elaborate analysis of initialSolution`: String, | ||
`Elaborate analysis of alternativeSolution`: String, | ||
`Differences between the solutions`: String, | ||
`Aspects to double check for mistakes`: List[String], | ||
`Elaborate on how to fix mistakes`: String, | ||
finalCorrectSolution: T | ||
) |
2 changes: 1 addition & 1 deletion
2
kyo-llm/shared/src/main/scala/kyo/llm/thoughts/reasoning/logic/Equivalence.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kyo.llm.thoughts.logic | ||
package kyo.llm.thoughts.reasoning.logic | ||
|
||
import kyo.llm.ais._ | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
kyo-llm/shared/src/main/scala/kyo/llm/thoughts/reasoning/logic/Optimization.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kyo.llm.thoughts.logic | ||
package kyo.llm.thoughts.reasoning.logic | ||
|
||
import kyo.llm.ais._ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters