Skip to content

Commit

Permalink
thoughts cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
fwbrasil committed Dec 27, 2023
1 parent f352104 commit 7f31aaa
Show file tree
Hide file tree
Showing 19 changed files with 47 additions and 219 deletions.
9 changes: 9 additions & 0 deletions kyo-llm/shared/src/main/scala/kyo/llm/thoughts/Analysis.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package kyo.llm.thoughts

import kyo.llm.ais._

case class Analysis(
`Dissect the input into fundamental elements for a detailed examination`: String,
`Explore connections and relationships among these elements`: String,
`Critically assess the validity and logic of the information presented`: String
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package kyo.llm.thoughts

import kyo.llm.ais._

case class Empathize(
`Interpret emotional cues in text`: String,
`Gain insight into emotional expressions`: String,
`Understand social and cultural contexts`: String
)
9 changes: 9 additions & 0 deletions kyo-llm/shared/src/main/scala/kyo/llm/thoughts/Ethics.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package kyo.llm.thoughts

import kyo.llm.ais._

case class Ethics(
`Analyze ethical implications of different scenarios`: String,
`Deliberate on moral values and principles in context`: String,
`Consider ethical consequences in decision-making processes`: String
)
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package kyo.llm.thoughts

import kyo.llm.ais._

case class Humorize(
case class Humor(
`Comedic elements identified`: String,
`Strategy for humorous content creation`: String,
`Appropriateness and audience sensitivity`: String
Expand Down
8 changes: 8 additions & 0 deletions kyo-llm/shared/src/main/scala/kyo/llm/thoughts/Plan.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package kyo.llm.thoughts

import kyo.llm.ais._

case class Plan(
`Develop a strategic plan of action based on analysis`: String,
`Outline specific steps or measures to address the query or problem`: String
)
9 changes: 9 additions & 0 deletions kyo-llm/shared/src/main/scala/kyo/llm/thoughts/Predict.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package kyo.llm.thoughts.old.reasoning

import kyo.llm.ais._

case class Predict(
`Forecast potential future scenarios based on current understanding`: String,
`Identify trends or patterns that could influence future developments`: String,
`Consider how different variables might impact future outcomes`: String
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package kyo.llm.thoughts

case class RolePlay[Role <: String](
`The user has defined the following const string as my role`: Role,
case class Role[Desc <: String](
`The user has defined the following const string as my role`: Desc,
`Strategy to assume the role`: String
) extends Thought.Opening
17 changes: 0 additions & 17 deletions kyo-llm/shared/src/main/scala/kyo/llm/thoughts/old/meta/Gen.scala

This file was deleted.

18 changes: 0 additions & 18 deletions kyo-llm/shared/src/main/scala/kyo/llm/thoughts/old/meta/Init.scala

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

26 changes: 0 additions & 26 deletions kyo-llm/shared/src/test/scala/kyo/llm/thoughts/ttt.scala

This file was deleted.

0 comments on commit 7f31aaa

Please sign in to comment.