Skip to content

Commit 5aaabdd

Browse files
committed
docs: Move download example after list.
1 parent 807d6c1 commit 5aaabdd

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@ Building blocks for **local** agents in C++.
77
88
## Examples
99

10-
You need to download a GGUF model in order to run the examples, the default model configuration is set for `granite-4.0-micro`:
11-
12-
```bash
13-
wget https://huggingface.co/ibm-granite/granite-4.0-micro-GGUF/resolve/main/granite-4.0-micro-Q8_0.gguf
14-
```
15-
16-
> [!IMPORTANT]
17-
> If you use a different model, you will probably have to adjust the values in `ModelConfig`.
18-
19-
2010
- **[Context Engineering](./examples/context-engineering/README.md)** - Use callbacks to manipulate the context between iterations of the agent loop.
2111

2212
- **[Memory](./examples/memory/README.md)** - Use tools that allow an agent to store and retrieve relevant information across conversations.
@@ -27,6 +17,15 @@ wget https://huggingface.co/ibm-granite/granite-4.0-micro-GGUF/resolve/main/gran
2717

2818
- **[Tracing](./examples/tracing/README.md)** - Use callbacks to collect a record of the steps of the agent loop with OpenTelemetry.
2919

20+
You need to download a GGUF model in order to run the examples, the default model configuration is set for `granite-4.0-micro`:
21+
22+
```bash
23+
wget https://huggingface.co/ibm-granite/granite-4.0-micro-GGUF/resolve/main/granite-4.0-micro-Q8_0.gguf
24+
```
25+
26+
> [!IMPORTANT]
27+
> If you use a different model, you will probably have to adjust the values in `ModelConfig`.
28+
3029
## Building Blocks
3130

3231
We define an `agent` with the following building blocks:

0 commit comments

Comments
 (0)