Skip to content

Commit 4a8d005

Browse files
committed
misc: small fix or general refactoring i did not bother commenting
1 parent 3c13d13 commit 4a8d005

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,15 @@ To run this agent (the `--url` is required because we referenced it in the agent
8080
nerve run new-agent --url 'cnn.com'
8181
```
8282

83+
For a list of all the subcommands and their options, feel free to explore `nerve -h`.
84+
85+
### Generators
86+
8387
The default model is OpenAI `gpt-4o-mini`, in order to use a different model you can either set the `NERVE_GENERATOR` environment variable, or pass it as [a generator string](#llm-support) via the `-g/--generator` command line argument (using any of the [LiteLLM supported providers](https://docs.litellm.ai/docs/providers)):
8488

8589
```sh
8690
export NERVE_GENERATOR=openai/gpt-4o
91+
8792
nerve run new-agent --url 'cnn.com'
8893
```
8994

@@ -99,8 +104,6 @@ To pass additional inference parameters:
99104
nerve -g "ollama/llama3.2?temperature=0.9&api_base=http://server-host:11434" new-agent --url 'cnn.com'
100105
```
101106

102-
For a list of all the subcommands and their options, feel free to explore `nerve -h`.
103-
104107
### Adding Tools
105108

106109
When a tool can be represented as a shell command, you can conveniently extend the agent capabilites in the YAML:

0 commit comments

Comments
 (0)