Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/wiki/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In the context of `csp-bot`, this means that we can control commands, backends,

Here is an example of a yaml-based configuration for the standard Slack-based chatbot:

**example/slack.yaml**
**example/bot/slack.yaml**

```yaml
# @package _global_
Expand Down Expand Up @@ -63,7 +63,7 @@ hydra:
name: csp-bot-slack[${bot_name}]
```

The `???` show that these fields should be overridden in other configs, which is exactly what we do in our `example/slack.yaml`.
The `???` show that these fields should be overridden in other configs, which is exactly what we do in our `example/bot/slack.yaml`.
We also see that the bot instance is configured with a `SlackConfig`.

For each backend supported, this is just a wrapper around the backend adapter's configuration:
Expand Down
2 changes: 1 addition & 1 deletion docs/wiki/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class HelloCommandModel(BaseCommandModel):
To select commands, including custom commands, follow the documentation in [Configuration](Configuration).
For example, with a Slack bot and the above command in `hello.py`:

**my_bot_config/slack_with_hello.yaml**
**my_bot_config/bot/slack_with_hello.yaml**

```yaml
# @package _global_
Expand Down