Skip to content

Commit cb81ab3

Browse files
committed
image resolution
1 parent 7f3174f commit cb81ab3

31 files changed

+184
-196
lines changed

fern/api-reference/integrating-with-twilio.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ ngrok http 5000
202202
203203
Copy the ngrok domain (without https://) to use in your environment variables.
204204
205-
<img height="200" src="./images/ngrok.png" />
205+
<img src="./images/ngrok.png" />
206206
207207
208208
## Update your environment variables
@@ -227,7 +227,7 @@ In the “A call comes in” section, enter the full URL to your application (ma
227227
228228
E.g. https://*******ngrok.app/call/incoming
229229
230-
<img height="200" src="./images/twilio.png" />
230+
<img src="./images/twilio.png" />
231231
232232
## Make a phone call
233233
Make a call to your number. You should hear a message using the ElevenLabs voice.

fern/conversational-ai/customization/byollm.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ To integrate a custom OpenAI key, create a secret containing your OPENAI_API_KEY
1212
<Steps>
1313
<Step>
1414
Navigate to the "Secrets" page and select "Add Secret"
15-
<img height="200" src="../../developer-guides/images/byollm_1.webp" />
15+
<img src="../../developer-guides/images/byollm_1.webp" />
1616
</Step>
1717
<Step>
1818
Choose "Custom LLM" from the dropdown menu.
19-
<img height="200" src="../../developer-guides/images/byollm_2.webp" />
19+
<img src="../../developer-guides/images/byollm_2.webp" />
2020
</Step>
2121
<Step>
2222
Enter the URL, your model, and the secret you created.
23-
<img height="200" src="../../developer-guides/images/byollm_3.webp" />
23+
<img src="../../developer-guides/images/byollm_3.webp" />
2424
</Step>
2525
<Step>
2626
Set "Custom LLM extra body" to true.
27-
<img height="200" src="../../developer-guides/images/byollm_7.webp" />
27+
<img src="../../developer-guides/images/byollm_7.webp" />
2828
</Step>
2929
</Steps>
3030

@@ -96,7 +96,7 @@ if __name__ == "__main__":
9696

9797
Run this code or your own server code.
9898

99-
<img height="200" src="../../developer-guides/images/byollm_4.webp" />
99+
<img src="../../developer-guides/images/byollm_4.webp" />
100100

101101
### Setting Up a Public URL for Your Server
102102

@@ -106,14 +106,14 @@ To make your server accessible, create a public URL using a tunneling tool like
106106
ngrok http --url=<Your url>.ngrok.app 8013
107107
```
108108

109-
<img height="200" src="../../developer-guides/images/byollm_5.webp" />
109+
<img src="../../developer-guides/images/byollm_5.webp" />
110110

111111
### Configuring Elevenlabs CustomLLM
112112

113113
Now let's make the changes in Elevenlabs
114114

115-
<img height="200" src="../../developer-guides/images/byollm_6.webp" />
116-
<img height="200" src="../../developer-guides/images/byollm_7.webp" />
115+
<img src="../../developer-guides/images/byollm_6.webp" />
116+
<img src="../../developer-guides/images/byollm_7.webp" />
117117

118118
Direct your server URL to ngrok endpoint, setup "Limit token usage" to 5000 and set "Custom LLM extra body" to true.
119119

fern/conversational-ai/customization/knowledge-base.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ There are 3 options to enhance your conversational agent's knowledge:
5151
## Best Practices
5252

5353
<CardGroup cols={2}>
54-
<Card title="Content Quality" icon="duotone star">
54+
<Card title="Content Quality">
5555
Provide clear, well-structured information that's relevant to your agent's
5656
purpose
5757
</Card>
58-
<Card title="Size Management" icon="duotone hard-drive">
58+
<Card title="Size Management">
5959
Break large documents into smaller, focused pieces for better processing
6060
</Card>
6161
</CardGroup>

fern/conversational-ai/customization/tools.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ slug: conversational-ai/customization/tools
1010
Tools allow you to make external function calls to third party apps so you can get real-time information. You might use tools to:
1111

1212
<CardGroup>
13-
<Card title="Calendar Management" icon="duotone calendar">
13+
<Card title="Calendar Management" icon="regular calendar">
1414
Schedule appointments and manage availability on someone's calendar
1515
</Card>
16-
<Card title="Restaurant Bookings" icon="duotone utensils">
16+
<Card title="Restaurant Bookings" icon="regular utensils">
1717
Book restaurant reservations and manage dining arrangements
1818
</Card>
19-
<Card title="CRM Integration" icon="duotone users">
19+
<Card title="CRM Integration" icon="regular users">
2020
Create or update customer records in a CRM system
2121
</Card>
22-
<Card title="Inventory Lookup" icon="duotone box">
22+
<Card title="Inventory Lookup" icon="regular box">
2323
Get inventory data to make product recommendations
2424
</Card>
2525
</CardGroup>
@@ -43,14 +43,14 @@ Before we proceed with creating our Tools, we will first create a Secret to secu
4343

4444
You can find Secrets within the Conversational AI Dashboard in the Agent subnav.
4545

46-
<img height="200" src="../images/bearer-secret.webp" />
46+
<img src="../images/bearer-secret.webp" />
4747

4848
### Webhooks
4949

5050
Next, look for "Tools" in the "Agent" subnav. Add a new Tool to configure your webhook. For our AI receptionist, we created two Tools to interact with the Cal.com API:
5151

5252
<AccordionGroup>
53-
<Accordion title="Get Available Slots" icon="duotone calendar-check">
53+
<Accordion title="Get Available Slots" icon="regular calendar-check">
5454
This tool allows the AI receptionist to check calendar availability. It can answer questions like "When is Sam available to meet tomorrow?" or "Is Sam free at 10:30am on Tuesday?"
5555

5656
```bash
@@ -64,7 +64,7 @@ Next, look for "Tools" in the "Agent" subnav. Add a new Tool to configure your w
6464

6565
</Accordion>
6666

67-
<Accordion title="Book Meeting" icon="duotone calendar-plus">
67+
<Accordion title="Book Meeting" icon="regular calendar-plus">
6868
This tool handles the actual meeting booking once a suitable time has been selected.
6969

7070
```bash
@@ -101,7 +101,7 @@ We configured that as follows:
101101
| Secret | Bearer | Bearer (the secret key we defined earlier) |
102102

103103
<Frame>
104-
<img height="200" src="../images/headers.webp" />
104+
<img src="../images/headers.webp" />
105105
</Frame>
106106

107107
### Path Parameters
@@ -113,7 +113,7 @@ Our AI receptionist does not call for Path Parameters so we will not be defining
113113

114114
Get and Delete requests typically have query parameters while Post and Patch do not. Our Get_Available_Slots tool relies on a Get request that requires the following query parameters: startTime, endTime, eventTypeId, eventTypeSlug, and duration.
115115

116-
<img height="200" src="../images/cal-get-slots.webp" />
116+
<img src="../images/cal-get-slots.webp" />
117117

118118
In our Description for each, we define a prompt that our Conversational Agent will use to extract the relevant information from the call transcript using an LLM.
119119

@@ -132,7 +132,7 @@ Event type IDs can differ. Use the [find event types endpoint](https://cal.com/d
132132

133133
Post and Patch requests typically have body parameters while Get and Delete do not. Our Book_Meeting tool is a Post request and requires the following Body Parameters: startTime, eventTypeId, attendee.
134134

135-
<img height="200" src="../images/cal-book-meeting.webp" />
135+
<img src="../images/cal-book-meeting.webp" />
136136

137137
In our Description for each, we define a prompt that our Conversational Agent will use to extract the relevant information from the call transcript using an LLM.
138138

fern/conversational-ai/docs/introduction.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,20 @@ Need more? Upgrade to a [paid plan](https://elevenlabs.io/pricing) instantly - n
4646
Companies and creators use our Conversational AI orchestration platform to create:
4747

4848
<CardGroup cols={2}>
49-
<Card title="Customer Service Representatives" icon="headset">
49+
<Card title="Customer Service Representatives" icon="regular headset">
5050
AI agents trained on company help documentation that can handle complex
5151
customer queries, troubleshoot issues, and provide 24/7 support in multiple
5252
languages.
5353
</Card>
54-
<Card title="Virtual Assistants" icon="calendar-check">
54+
<Card title="Virtual Assistants" icon="regular calendar-check">
5555
Personal AI helpers that manage scheduling, set reminders, look up
5656
information, and help users stay organized throughout their day.
5757
</Card>
58-
<Card title="Retail Support" icon="shop">
58+
<Card title="Retail Support" icon="regular shop">
5959
Shopping assistants that help customers find products, provide personalized
6060
recommendations, track orders, and answer product-specific questions.
6161
</Card>
62-
<Card title="Personalized Learning" icon="book-open">
62+
<Card title="Personalized Learning" icon="regular book-open">
6363
1-1 AI tutors that help students learn new topics and deepen their
6464
understanding. Enhance reading comprehension by speaking with books and
6565
[articles](https://elevenlabs.io/blog/time-brings-conversational-ai-to-journalism).

fern/conversational-ai/guides/conversational-ai-twilio.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ Before integrating with Twilio, you'll need to configure your agent to use the c
2727
2. Go to the Voice Section
2828
3. Select "μ-law 8000 Hz" from the dropdown
2929

30-
<img height="200" src="../../developer-guides/images/twilio_3.webp" />
30+
<img src="../../developer-guides/images/twilio_3.webp" />
3131
</Step>
3232

3333
<Step title="Set Input Format">
3434
1. Navigate to your agent settings
3535
2. Go to the Advanced Section
3636
3. Select "μ-law 8000 Hz" for the input format
3737

38-
<img height="200" src="../../developer-guides/images/twilio_4.webp" />
38+
<img src="../../developer-guides/images/twilio_4.webp" />
3939
</Step>
4040
</Steps>
4141

@@ -480,7 +480,7 @@ Before integrating with Twilio, you'll need to configure your agent to use the c
480480
```bash
481481
ngrok http --url=<your-url-here> 8000
482482
```
483-
<img height="200" src="../../developer-guides/images/twilio_1.webp" />
483+
<img src="../../developer-guides/images/twilio_1.webp" />
484484
</Step>
485485
486486
<Step title="Configure Twilio">
@@ -491,7 +491,7 @@ Before integrating with Twilio, you'll need to configure your agent to use the c
491491
`https://your-ngrok-url.ngrok.app/incoming-call-eleven`
492492
5. Set the HTTP method to POST
493493

494-
<img height="200" src="../../developer-guides/images/twilio_2.webp" />
494+
<img src="../../developer-guides/images/twilio_2.webp" />
495495
</Step>
496496
</Steps>
497497

fern/developer-guides/integrating-with-twilio.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ ngrok http 5000
204204
205205
Copy the ngrok domain (without https://) to use in your environment variables.
206206
207-
<img height="200" src="../api-reference/images/ngrok.webp" />
207+
<img src="../api-reference/images/ngrok.webp" />
208208
209209
210210
## Update your environment variables
@@ -229,7 +229,7 @@ In the “A call comes in” section, enter the full URL to your application (ma
229229
230230
E.g. https://*******ngrok.app/call/incoming
231231
232-
<img height="200" src="../api-reference/images/twilio.webp" />
232+
<img src="../api-reference/images/twilio.webp" />
233233
234234
## Make a phone call
235235
Make a call to your number. You should hear a message using the ElevenLabs voice.

fern/docs.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -271,47 +271,47 @@ navigation:
271271
- section: Overview
272272
contents:
273273
- page: Quickstart
274-
icon: duotone rocket
274+
icon: regular rocket
275275
path: developer-guides/quickstart.mdx
276276
- page: Specifying Server Location
277-
icon: duotone globe
277+
icon: regular globe
278278
path: developer-guides/specifying-server-location.mdx
279279
- page: Reducing Latency
280-
icon: duotone gauge-high
280+
icon: regular gauge-high
281281
path: developer-guides/reducing-latency.mdx
282282
- page: Models
283-
icon: duotone cube
283+
icon: regular cube
284284
path: developer-guides/models.mdx
285285
- section: Text to Speech
286286
contents:
287287
- page: How to Use Text-to-Speech
288-
icon: duotone waveform
288+
icon: regular waveform
289289
path: developer-guides/how-to-use-tts-with-streaming.mdx
290290
- page: Streaming Text-to-Speech
291-
icon: duotone plug
291+
icon: regular plug
292292
path: developer-guides/how-to-use-websocket.mdx
293293
- page: Combine Multiple Generations
294-
icon: duotone merge
294+
icon: regular merge
295295
path: developer-guides/how-to-use-request-stitching.mdx
296296
- page: How to Use Pronunciation Dictionaries
297-
icon: duotone language
297+
icon: regular language
298298
path: developer-guides/how-to-use-pronunciation-dictionaries.mdx
299299
- page: Integrating with Twilio
300-
icon: duotone phone
300+
icon: regular phone
301301
path: developer-guides/integrating-with-twilio.mdx
302302
- section: Text to Sound Effects
303303
contents:
304304
- page: How to Use the Text to Sound Effects API
305-
icon: duotone volume
305+
icon: regular volume
306306
path: developer-guides/how-to-use-text-to-sound-effects.mdx
307307
- section: Dubbing
308308
contents:
309309
- page: How to Dub a Video
310-
icon: duotone video
310+
icon: regular video
311311
path: developer-guides/how-to-dub-a-video.mdx
312-
- page: Project Examples
312+
- link: Project Examples
313313
icon: brands github
314-
path: developer-guides/github-examples.mdx
314+
href: https://github.com/elevenlabs/elevenlabs-examples
315315
- tab: conversational
316316
layout:
317317
- page: Introduction
@@ -322,7 +322,7 @@ navigation:
322322
icon: duotone comments
323323
path: conversational-ai/docs/agent-setup.mdx
324324
- section: Build a Conversational App
325-
icon: duotone browser
325+
icon: regular browser
326326
contents:
327327
- page: Next.JS
328328
icon: brands react
@@ -331,24 +331,24 @@ navigation:
331331
icon: brands js
332332
path: conversational-ai/guides/conversational-ai-guide-vite.mdx
333333
- page: Twilio Integration
334-
icon: duotone phone
334+
icon: regular phone
335335
path: conversational-ai/guides/conversational-ai-twilio.mdx
336336
- section: Customization
337337
contents:
338338
- page: Tools
339-
icon: duotone toolbox
339+
icon: regular toolbox
340340
path: conversational-ai/customization/tools.mdx
341341
- page: Client Tools
342-
icon: duotone webhook
342+
icon: regular webhook
343343
path: conversational-ai/customization/client-tools.mdx
344344
- page: Integrate Your Own Model
345-
icon: duotone brain-circuit
345+
icon: regular brain-circuit
346346
path: conversational-ai/customization/byollm.mdx
347347
- page: Knowledge Base
348-
icon: duotone book
348+
icon: regular book
349349
path: conversational-ai/customization/knowledge-base.mdx
350350
- page: Dynamic Conversation
351-
icon: duotone sliders
351+
icon: regular sliders
352352
path: conversational-ai/customization/conversation-configuration.mdx
353353
- section: Libraries & SDKs
354354
contents:

fern/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ slug: welcome-to-elevenlabs
2323
title="Quickstart"
2424
href="/docs/developer-guides/quickstart"
2525
>
26-
<img height="200" src="https://eleven-public-cdn.elevenlabs.io/payloadcms/jg7niztnfon-elevenlabs-voice-cloning-precise-control.jpg" width="240" />
26+
<img src="https://eleven-public-cdn.elevenlabs.io/payloadcms/jg7niztnfon-elevenlabs-voice-cloning-precise-control.jpg" width="240" />
2727

2828
Launch your first project in minutes with step-by-step guidance.
2929
</Card>

fern/product/audio-native/audio-native-react.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ First, you'll need to create and customize your player, whitelist your url, and
2525
Once you've gone through the setup, you should see a page like this:
2626

2727
<Frame>
28-
<img height="200" src="../../product/audio-native/images/an-1-newUI.webp" />
28+
<img src="../../product/audio-native/images/an-1-newUI.webp" />
2929
</Frame>
3030

3131
This is the code snippet that is used to embed Audio Native on a normal website such as Wordpress, Ghost, or Webflow. However, you can't use this snippet directly in React.
@@ -164,7 +164,7 @@ This is why, if we were to just paste the Audio Native code snippet into our Rea
164164
Before you can use this component, you'll need to retrieve your public user ID from the code snippet. Go back to https://elevenlabs.io/audio-native, and in the code snippet, copy the property called `publicuserid`.
165165

166166
<Frame>
167-
<img height="200" src="../../product/audio-native/images/an-2-newUI.webp" />
167+
<img src="../../product/audio-native/images/an-2-newUI.webp" />
168168
</Frame>
169169

170170
This public user ID is used to identify your Audio Native project.
@@ -194,7 +194,7 @@ export default function Page() {
194194
Start your development server, if you haven't already, and view the page. You should see something similar to the following, stating that the URL is not allowed. (If you don't see anything, please see the Troubleshooting section below to perform a hard refresh)
195195

196196
<Frame>
197-
<img height="200" src="../../product/audio-native/images/an_url_not_allowed.webp" />
197+
<img src="../../product/audio-native/images/an_url_not_allowed.webp" />
198198
</Frame>
199199

200200
### Troubleshooting

0 commit comments

Comments
 (0)