Skip to content

Commit

Permalink
Fix md-link-check CI
Browse files Browse the repository at this point in the history
  • Loading branch information
klntsky committed Nov 20, 2024
1 parent 35dadd4 commit 75a1634
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .mlc_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"ignorePatterns": [
{
"pattern": "^https://platform.openai.com"
}
],
"aliveStatusCodes": [
200,
429
]
}
6 changes: 3 additions & 3 deletions docs/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ The `hello` module can be used from [another module](../examples/module-demo.met

## Special variables

### Model switching
### `MODEL` switching

`MODEL` variable is used to switch LLM models on the fly.

Expand All @@ -148,7 +148,7 @@ The `hello` module can be used from [another module](../examples/module-demo.met
]
```

### Role switching
### `ROLE` switching

`ROLE` is a special variable used to control LLM input "role".

Expand All @@ -162,7 +162,7 @@ See [OpenAI docs](https://platform.openai.com/docs/guides/text-generation) for m

[(example)](../examples/roles.metaprompt)

### Live status update
### Live `STATUS` update

`STATUS` variable provides a way to set a status line that is visible in the terminal. Useful to make the user aware of what is happening when no output is being generated:

Expand Down

0 comments on commit 75a1634

Please sign in to comment.