Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
vsct-jburet committed Jun 27, 2024
1 parent 08dfd9f commit 5ea08ec
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions docs/_en/dev/bot-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ Using [Maven](https://maven.apache.org/) :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>tock-bot-api-websocket</artifactId>
<version>24.3.2</version>
<version>24.3.3</version>
</dependency>
```

Or [Gradle](https://gradle.org/) :

```groovy
compile 'ai.tock:tock-bot-api-websocket:24.3.2'
compile 'ai.tock:tock-bot-api-websocket:24.3.3'
```

### Enable WebHook mode
Expand All @@ -66,14 +66,14 @@ Using [Maven](https://maven.apache.org/) :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>tock-bot-api-webhook</artifactId>
<version>24.3.2</version>
<version>24.3.3</version>
</dependency>
```

Or [Gradle](https://gradle.org/) :

```groovy
compile 'ai.tock:tock-bot-api-webhook:24.3.2'
compile 'ai.tock:tock-bot-api-webhook:24.3.3'
```

In this case, unlike the _WebSocket_ mode, the bot application must be reachable by the
Expand Down
4 changes: 2 additions & 2 deletions docs/_en/dev/integrated-bot.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ With Maven:
<dependency>
<groupId>ai.tock</groupId>
<artifactId>bot-toolkit</artifactId>
<version>24.3.2</version>
<version>24.3.3</version>
</dependency>
```

With Gradle:

```groovy
compile 'ai.tock:bot-toolkit:24.3.2'
compile 'ai.tock:bot-toolkit:24.3.3'
```

### A Bot is a Set of Stories
Expand Down
4 changes: 2 additions & 2 deletions docs/_en/test-the-bot.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ With Maven :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>bot-test</artifactId>
<version>24.3.2</version>
<version>24.3.3</version>
<scope>test</scope>
</dependency>
```

With Gradle :

```groovy
testCompile 'ai.tock:bot-test:24.3.2'
testCompile 'ai.tock:bot-test:24.3.3'
```

This framework is documented in KDoc format [here]https://doc.tock.ai/tock/dokka/tock/ai.tock.bot.test).
Expand Down
8 changes: 4 additions & 4 deletions docs/_fr/dev/bot-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ Par exemple dans un projet [Maven](https://maven.apache.org/) :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>tock-bot-api-websocket</artifactId>
<version>24.3.2</version>
<version>24.3.3</version>
</dependency>
```

Ou dans un projet [Gradle](https://gradle.org/) :

```groovy
compile 'ai.tock:tock-bot-api-websocket:24.3.2'
compile 'ai.tock:tock-bot-api-websocket:24.3.3'
```

### Activer le mode WebHook
Expand All @@ -77,14 +77,14 @@ Par exemple dans un projet [Maven](https://maven.apache.org/) :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>tock-bot-api-webhook</artifactId>
<version>24.3.2</version>
<version>24.3.3</version>
</dependency>
```

Ou dans un projet [Gradle](https://gradle.org/) :

```groovy
compile 'ai.tock:tock-bot-api-webhook:24.3.2'
compile 'ai.tock:tock-bot-api-webhook:24.3.3'
```

Dans ce cas, contrairement au mode _WebSocket_, il faut que l'application/bot démarrée soit joignable par la
Expand Down
4 changes: 2 additions & 2 deletions docs/_fr/dev/bot-integre.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ Par exemple dans un projet [Maven](https://maven.apache.org/) :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>bot-toolkit</artifactId>
<version>24.3.2</version>
<version>24.3.3</version>
</dependency>
```

Ou dans un projet [Gradle](https://gradle.org/) :

```groovy
compile 'ai.tock:bot-toolkit:24.3.2'
compile 'ai.tock:bot-toolkit:24.3.3'
```

### Un bot est un ensemble de parcours (stories)
Expand Down
4 changes: 2 additions & 2 deletions docs/_fr/dev/tester.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ Avec Maven :
<dependency>
<groupId>ai.tock</groupId>
<artifactId>bot-test</artifactId>
<version>24.3.2</version>
<version>24.3.3</version>
<scope>test</scope>
</dependency>
```

ou Gradle :

```groovy
testCompile 'ai.tock:bot-test:24.3.2'
testCompile 'ai.tock:bot-test:24.3.3'
```

L'ensemble de ce framework est documenté au format KDoc [ici](https://doc.tock.ai/tock/dokka/tock/ai.tock.bot.test).
Expand Down
2 changes: 1 addition & 1 deletion docs/_fr/guide/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ la dépendance `tock-bot-api-websocket` incluse :
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<plugin.kotlin.version>1.3.41</plugin.kotlin.version>
<plugin.source.version>3.1.0</plugin.source.version>
<lib.tock.version>24.3.2</lib.tock.version>
<lib.tock.version>24.3.3</lib.tock.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 5ea08ec

Please sign in to comment.