From 6adf9013b48105a4acf4bd68d73ae5e9f8a3f1e0 Mon Sep 17 00:00:00 2001 From: Sebastian Rojo Date: Fri, 29 Dec 2023 17:35:03 -0500 Subject: [PATCH] fix vocode#473 (#474) --- docs/how-to-use-it.mdx | 18 +++++++++--------- docs/open-source/action-agents.mdx | 2 +- docs/open-source/agent.mdx | 6 +++--- docs/open-source/python-quickstart.mdx | 2 +- docs/open-source/telephony.mdx | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/how-to-use-it.mdx b/docs/how-to-use-it.mdx index faf6912c3..c0daf8954 100644 --- a/docs/how-to-use-it.mdx +++ b/docs/how-to-use-it.mdx @@ -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 React–with 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. diff --git a/docs/open-source/action-agents.mdx b/docs/open-source/action-agents.mdx index fa1827a91..389174d10 100644 --- a/docs/open-source/action-agents.mdx +++ b/docs/open-source/action-agents.mdx @@ -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. diff --git a/docs/open-source/agent.mdx b/docs/open-source/agent.mdx index 0f77cef5e..ee2538691 100644 --- a/docs/open-source/agent.mdx +++ b/docs/open-source/agent.mdx @@ -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 @@ -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 A description for the call recipient. @@ -52,4 +52,4 @@ Primarily used for [Outbound phone calls](/telephony), the `InformationRetrieval The fields that are to be collected on the call. -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) diff --git a/docs/open-source/python-quickstart.mdx b/docs/open-source/python-quickstart.mdx index 0c2b028bf..10cfffb5a 100644 --- a/docs/open-source/python-quickstart.mdx +++ b/docs/open-source/python-quickstart.mdx @@ -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 diff --git a/docs/open-source/telephony.mdx b/docs/open-source/telephony.mdx index 8a0456e85..d608f0e07 100644 --- a/docs/open-source/telephony.mdx +++ b/docs/open-source/telephony.mdx @@ -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.