> For the complete documentation index, see [llms.txt](https://voxrad.gitbook.io/voxrad/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://voxrad.gitbook.io/voxrad/fundamentals/getting-set-up/understanding-workflow.md).

# Understanding Workflow

1. Use a combination of using a transcription model to first transcribe audio and then format and restructure the transcript using instruction template.
2. Use a multimodal model to directly input the audio and instruction template to provide output.

{% hint style="info" %}
**Important:** If using the first method, you will have to provide two keys, i.e., for "Transcription Model" and "Text Model" in the settings. For using the second method only a single "Multimodal Model" key is required.
{% endhint %}

## Supported LLMs

There are 3 types of LLMs supported by the application.

<table><thead><tr><th width="180">Model</th><th>Capabilities</th></tr></thead><tbody><tr><td>Transcription Model</td><td>Transcribes audio to text. Models like <code>whisper</code>. Most API services have an upper limit of 25 MB.</td></tr><tr><td>Text Model</td><td>Utilizes the transcript and instruction template to generate response. Models like <code>gpt-4</code> and <code>Llama 3</code>.</td></tr><tr><td>Multimodal Model</td><td>Can directly use user's recorded audio and instruction template to generate output. Models like <code>gemini-1.5-flash</code></td></tr></tbody></table>

{% hint style="warning" %}
Only `gemini-1.5-pro` and `gemini-1.5-flash` multimodal models are supported experimentally. `GPT-4o` will be supported as the API becomes available. As these are remotely hosted LLMs should not be used for any sensitive data.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://voxrad.gitbook.io/voxrad/fundamentals/getting-set-up/understanding-workflow.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
