Skip to content

Commit

Permalink
readme + agents package fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fwbrasil committed Dec 10, 2023
1 parent 7b96eb0 commit d595bfb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ val a: Unit > IOs =

// Use 'andThen'.
val b: String > IOs =
a.andThen(IOs(println(" world")))
a.andThen("test")
```

### Effect widening
Expand Down
2 changes: 1 addition & 1 deletion kyo-llm/shared/src/main/scala/kyo/llm/agents.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import zio.schema.codec.JsonCodec
import kyo.llm.util.JsonSchema
import scala.annotation.implicitNotFound

object agents {
package object agents {

abstract class Agent {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kyo.llm.tools
package kyo.llm.agents

import kyo._
import kyo.llm.ais._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kyo.llm.tools
package kyo.llm.agents

import kyo._
import kyo.llm.agents._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kyo.llm.tools
package kyo.llm.agents

import kyo._
import kyo.llm.agents._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kyo.llm.tools
package kyo.llm.agents

import kyo._
import kyo.llm.agents._
Expand Down

0 comments on commit d595bfb

Please sign in to comment.