Skip to content

Commit

Permalink
fix vocode#473 (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
arpagon authored Dec 29, 2023
1 parent 3a80e6a commit 6adf901
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
18 changes: 9 additions & 9 deletions docs/how-to-use-it.mdx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
title: "How to use it"
description: "The different ways to use Vocode."
title: "How to Use It"
description: "Various ways to utilize Vocode."
---

## Understanding our libraries
## Understanding Our Open Source Libraries

Vocode supports Python and Reactwith future support coming for
other languages.
Vocode's Open Source supports both Python and React, with plans for future support for
additional languages.

## Get started with Python
### Getting Started with the Open Source Python Library

Use the [Python quickstart](/python-quickstart) guide.
Please refer to the [Python quickstart](/open-source/python-quickstart) guide.

## Get started with React
### Getting Started with the Open Source React Library

Use the [React quickstart](/react-quickstart) guide.
Please refer to the [React quickstart](/open-source/react-quickstart) guide.
2 changes: 1 addition & 1 deletion docs/open-source/action-agents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ class NylasSendEmail(BaseAction[NylasSendEmailActionOutput]):
return NylasSendEmailActionOutput(response=json.dumps({"success": True}))
```

See [Agent Factory](/agent-factory) for more information on how to register your action with the agent factory.
See [Agent Factory](/open-source/agent-factory) for more information on how to register your action with the agent factory.
6 changes: 3 additions & 3 deletions docs/open-source/agent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ generation/understanding layer of the conversation. In other words, Agents are t
AI that is actually having the conversation.

Vocode provides agents that work out-of-the-box (see below) and also allows developers to
[create their own agents](/create-your-own-agent).
[create their own agents](/open-source/create-your-own-agent).

## Default Agent Implementations

Expand All @@ -34,7 +34,7 @@ The `LLMAgentConfig` is configured to use the completions endpoint using the sim

### InformationRetrievalAgentConfig

Primarily used for [Outbound phone calls](/telephony), the `InformationRetrievalAgent
Primarily used for [Outbound phone calls](/open-source/telephony), the `InformationRetrievalAgent

<ParamField path="recipient_descriptor" type="str" required={true}>
A description for the call recipient.
Expand All @@ -52,4 +52,4 @@ Primarily used for [Outbound phone calls](/telephony), the `InformationRetrieval
The fields that are to be collected on the call.
</ParamField>

To build your own agent, see [Create your own AI Agent](/create-your-own-agent)
To build your own agent, see [Create your own AI Agent](/open-source/create-your-own-agent)
2 changes: 1 addition & 1 deletion docs/open-source/python-quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pip install 'vocode[io]'

# Getting started

The `io` extra installs the packages necessary to run our voice conversations locally, but is not needed for other surfaces, e.g. [phone calls](/telephony).
The `io` extra installs the packages necessary to run our voice conversations locally, but is not needed for other surfaces, e.g. [phone calls](/open-source/telephony).
You may need to install [portaudio](https://formulae.brew.sh/formula/portaudio) and [ffmpeg](https://formulae.brew.sh/formula/ffmpeg) on your system.

## Working with system audio
Expand Down
2 changes: 1 addition & 1 deletion docs/open-source/telephony.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: "How to use agents with inbound and outbound phone calls."
# Overview

Vocode supports using agents with inbound and outbound phone calls. Users
can [create their own agents](/create-your-own-agent) and use them
can [create their own agents](/open-source/create-your-own-agent) and use them
to fulfill a variety of use cases like information collection, appointment scheduling,
sales, customer support, and more.

Expand Down

0 comments on commit 6adf901

Please sign in to comment.