Skip to content

Commit af77cdd

Browse files
committed
docs: updated links to examples
1 parent 201f9eb commit af77cdd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@ beago provides composable building blocks for LLM-powered Go applications — pi
1717
// Pipe: send messages and get structured output
1818
pipe := pipes.New(messages, model, parser)
1919
result, _ := pipe.Invoke(ctx)
20+
```
21+
See [Pipe](/examples/pipes/json/main.go) for full working `pipe` example.
2022

23+
```go
2124
// Agent: reason and act with tools
2225
agent, _ := agents.NewReAct(ctx, model, tools, storage)
2326
agent.Task(ctx, "Use the helloWorld tool with name Beago")
2427
res, _ := runner.New(agent).Run(ctx)
2528
```
2629

27-
See [Example](/examples/agents/hello/main.go) for full working examples.
30+
See [Agent](/examples/agents/hello/main.go) for full working `agent` example.
2831

2932
## Contributions
3033

0 commit comments

Comments
 (0)