Skip to content
Open
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 advanced/mode.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ We have two conversation modes **Hands-free** and **Hands-on**.

By default interactions are initiated in **Hands-free** mode, In this mode users just talk to the AI and we automatically process the response, timing and manage the conversation responsiveness in the background.

While Hands-on mode, allows users to manually determine when to send their full response to the AI.
Hands-on mode allows users to manually determine when to send their full response to the AI.

<Info>
You can try out the Hands-on mode in the [Playground](https://app.diarupt.ai/) by changing the **Interaction Mode** control to `hands-on` in the `Advanced Controls` section.
Expand Down Expand Up @@ -114,4 +114,4 @@ To send user's response.

## Conclusion

You're all set to use Hands-on mode. Now you control your user's conversational experience as you wish while still enjoying the benefit of our realtime video conversation AI.
You're all set to use Hands-on mode which grants more conversational control to users and allows for more personalized interactive flow while still enjoying the benefit of our realtime video conversation AI.
6 changes: 3 additions & 3 deletions core/transcripts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ description: "Transcripts provide interactions logs"

Transcripts are a way to provide a detailed log of the interaction between the AI and the user. This is useful for debugging, post processing and for auditing purposes.

To access the intractions transcript history you can fetch a interaction session.
To access the interactions transcript history you can fetch an interaction session.

<Info>
See the [Get Session API](/api/sessions/get-session) for more information.
</Info>

An Interaction transcript history would something look like this:
Below is a snapshot of an Interaction transcript:

```json
[
Expand Down Expand Up @@ -60,7 +60,7 @@ That should log the transcript to the console as it is being generated, which wo
"timestamp": "2020-10-20T18:00:00.000Z",
"role": "assistant",
"content": "Hello, how can I help you?",
"complete": true // indicates that this is the full transcript
"complete": true // indicates transcript contains complete statement
}
```