Skip to content

Commit 6f6da5f

Browse files
committed
small fixes
1 parent 5613b77 commit 6f6da5f

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

fern/blocks/block-types.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ slug: blocks/block-types
1313

1414
#### Types
1515

16-
- [**Conversation:**]((https://api.vapi.ai/api#:~:text=ConversationBlock)) This block type manages interactions between the assistant and the user. A conversation block is used when the assistant needs to ask the user for specific information, such as contact details or preferences.
16+
- [**Conversation:**](https://api.vapi.ai/api#:~:text=ConversationBlock) This block type manages interactions between the assistant and the user. A conversation block is used when the assistant needs to ask the user for specific information, such as contact details or preferences.
1717
- [**Tool-call:**](https://api.vapi.ai/api#:~:text=ToolCallBlock) This block allows the assistant to make external tool calls.
1818
- [**Workflow:**](https://api.vapi.ai/api#:~:text=WorkflowBlock) This block type enables the creation of subflows, which are smaller sets of steps executed within a Block. It can contain an array of steps (`steps[]`) and uses an `inputSchema` to define the data needed to initiate the workflow, along with an `outputSchema` to handle the data returned after completing the subflow. Workflow blocks are ideal for organizing complex processes or reusing workflows across different parts of the conversation.

fern/community/expert-directory.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Whether you need help deciding what to automate or assistance in building it, Va
105105
</Card>
106106

107107
<Card
108-
href="aiplaygrounds.xyz"
108+
href="https://aiplaygrounds.xyz"
109109
className="ed-card"
110110
style={{
111111
alignItems: "center",
@@ -203,7 +203,7 @@ Whether you need help deciding what to automate or assistance in building it, Va
203203
</Card>
204204

205205
<Card
206-
href="dontrunoff.com"
206+
href="https://dontrunoff.com"
207207
className="ed-card"
208208
style={{
209209
alignItems: "center",
@@ -343,7 +343,7 @@ Whether you need help deciding what to automate or assistance in building it, Va
343343
</Card>
344344

345345
<Card
346-
href="lunarisai.com"
346+
href="https://lunarisai.com"
347347
className="ed-card"
348348
style={{
349349
alignItems: "center",
@@ -481,7 +481,7 @@ Whether you need help deciding what to automate or assistance in building it, Va
481481
</Card>
482482

483483
<Card
484-
href="vatech.io"
484+
href="https://vatech.io"
485485
className="ed-card"
486486
style={{
487487
alignItems: "center",

fern/customization/provider-keys.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ We are currently have support for any OpenAI-compatible endpoint. This includes
1919

2020
To use one of these providers, you can specify the `provider` and `model` in the `model` parameter of the [Assistant](/api-reference/assistants/create-assistant).
2121

22-
You can find more details in the [Custom LLMs](customization/custom-llm/fine-tuned-openai-models) section of the documentation.
22+
You can find more details in the [Custom LLMs](/customization/custom-llm/fine-tuned-openai-models) section of the documentation.
2323

2424
## Voice Providers
2525

fern/docs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,8 @@ redirects:
372372
destination: /api-reference/assistants/delete
373373
- source: /api-reference/calls/create-call
374374
destination: /api-reference/calls/create
375+
- source: /api-reference/calls/create-phone-call
376+
destination: /api-reference/calls/create
375377
- source: /api-reference/calls/get-call
376378
destination: /api-reference/calls/get
377379
- source: /api-reference/calls/list-calls
@@ -500,3 +502,7 @@ redirects:
500502
destination: "/call-forwarding"
501503
- source: "/prompting_guide"
502504
destination: "/prompting-guide"
505+
- source: /community/videos
506+
destination: /community/appointment-scheduling
507+
- source: /enterprise
508+
destination: /enterprise/plans

fern/quickstart/dashboard.mdx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,16 @@ slug: quickstart/dashboard
2121

2222
One of the easiest ways to get started with Vapi is by using the web dashboard.
2323

24-
<Note>You can visit your dashboard by going to [dashboard.vapi.ai](https://dashboard.vapi.ai)</Note>
24+
<Note>
25+
You can visit your dashboard by going to [dashboard.vapi.ai](https://dashboard.vapi.ai)
26+
</Note>
2527

2628
The web dashboard gives you the ability to:
2729

2830
- **view, create, & modify [assistants](/assistants)** associated with your account
2931
- **provision & manage phone numbers** assistants can dial outbound from or receive inbound calls to
3032
- **review conversation data** (such as audio recordings, call metadata, etc)
31-
- **manage your [provider keys](customization/provider-keys)** (used in communication with external [TTS](/glossary#tts), LLM, & [STT](/glossary#stt) vendors)
33+
- **manage your [provider keys](/customization/provider-keys)** (used in communication with external [TTS](/glossary#tts), LLM, & [STT](/glossary#stt) vendors)
3234

3335
We will be walking through the core necessities you need to get up and running in this guide.
3436

@@ -51,7 +53,9 @@ Vapi’s has 3 types of menu items: `pizza`, `side`s, & `drink`s. Customers will
5153

5254
First we're going to set up our assistant in the dashboard. Once our assistant’s **transcriber**, **model**, & **voice** are set up, we can call it to place our order.
5355

54-
<Note>You can visit your dashboard at [dashboard.vapi.ai](https://dashboard.vapi.ai/)</Note>
56+
<Note>
57+
You can visit your dashboard at [dashboard.vapi.ai](https://dashboard.vapi.ai/)
58+
</Note>
5559

5660
<Markdown src="../snippets/quickstart/dashboard/assistant-setup-inbound.mdx" />
5761

fern/quickstart/web.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ subtitle: Get started with Vapi on the Web.
44
slug: quickstart/web
55
---
66

7-
import { quickstartDemoLink } from "../snippets/quickstart/web/links.tsx";
8-
97
<Frame>
108
<div class="video-embed-wrapper">
119
<iframe
@@ -29,7 +27,7 @@ Anywhere you can run client-side JavaScript, you can run Vapi. All the way from
2927
title="Live React Demo"
3028
icon="arrow-up-right-from-square"
3129
color="#f25130"
32-
href={quickstartDemoLink}
30+
href="https://stackblitz.com/~/github.com/VapiAI/quickstart-react"
3331
>
3432
Follow along as you read.
3533
</Card>

0 commit comments

Comments
 (0)