From 1f9513b96fd7026884c5cebc84c5c3cbdc731707 Mon Sep 17 00:00:00 2001 From: fern-bot Date: Mon, 4 Nov 2024 12:34:53 -0500 Subject: [PATCH] update dashboard links --- fern/pages/-ARCHIVE-/old-tutorials/semantic-search.mdx | 2 +- fern/pages/-ARCHIVE-/text-classification-guide.mdx | 2 +- scripts/cookbooks-mdx/analyzing-hacker-news.mdx | 2 +- scripts/cookbooks-mdx/basic-semantic-search.mdx | 4 ++-- scripts/cookbooks-mdx/hello-world-meet-ai.mdx | 2 +- .../cookbooks-mdx/text-classification-using-embeddings.mdx | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/fern/pages/-ARCHIVE-/old-tutorials/semantic-search.mdx b/fern/pages/-ARCHIVE-/old-tutorials/semantic-search.mdx index f94fe1312..32385f5f9 100644 --- a/fern/pages/-ARCHIVE-/old-tutorials/semantic-search.mdx +++ b/fern/pages/-ARCHIVE-/old-tutorials/semantic-search.mdx @@ -58,7 +58,7 @@ If you're running this in a jupyter notebook, you'll need to prepend a `!` to th !pip install --upgrade cohere ``` -Get your Cohere API key by [signing up here](https://os.cohere.ai/register). Paste it in `api_key` below. +Get your Cohere API key by [signing up here](https://dashboard.cohere.ai/register). Paste it in `api_key` below. #### 1a. Import the Necessary Dependencies to Run this Example diff --git a/fern/pages/-ARCHIVE-/text-classification-guide.mdx b/fern/pages/-ARCHIVE-/text-classification-guide.mdx index 21ddae876..bc273cf3c 100644 --- a/fern/pages/-ARCHIVE-/text-classification-guide.mdx +++ b/fern/pages/-ARCHIVE-/text-classification-guide.mdx @@ -14,7 +14,7 @@ Human collaboration runs on language. The firehose of documents, emails, and mes - Analysis of financial filings and reports ![](../../assets/images/698b185-Text_Classification_Visual_1.svg) -The Cohere platform aims to help you build classifiers for these and other use cases. You can [start trying Cohere for free when you sign up](https://os.cohere.ai/) and automatically receive $75 in free credits. +The Cohere platform aims to help you build classifiers for these and other use cases. You can [start trying Cohere for free when you sign up](https://dashboard.cohere.ai/) and automatically receive $75 in free credits. ## Training classifiers with Cohere’s language models diff --git a/scripts/cookbooks-mdx/analyzing-hacker-news.mdx b/scripts/cookbooks-mdx/analyzing-hacker-news.mdx index 3f2ff3786..ab2a46d63 100644 --- a/scripts/cookbooks-mdx/analyzing-hacker-news.mdx +++ b/scripts/cookbooks-mdx/analyzing-hacker-news.mdx @@ -229,7 +229,7 @@ warnings.filterwarnings('ignore') pd.set_option('display.max_colwidth', None) ``` -Fill in your Cohere API key in the next cell. To do this, begin by [signing up to Cohere](https://os.cohere.ai/) (for free!) if you haven't yet. Then get your API key [here](https://dashboard.cohere.com/api-keys). +Fill in your Cohere API key in the next cell. To do this, begin by [signing up to Cohere](https://dashboard.cohere.ai/) (for free!) if you haven't yet. Then get your API key [here](https://dashboard.cohere.com/api-keys). ```python PYTHON co = cohere.Client("COHERE_API_KEY") # Insert your Cohere API key diff --git a/scripts/cookbooks-mdx/basic-semantic-search.mdx b/scripts/cookbooks-mdx/basic-semantic-search.mdx index e1fb8646f..fcc1ef9e5 100644 --- a/scripts/cookbooks-mdx/basic-semantic-search.mdx +++ b/scripts/cookbooks-mdx/basic-semantic-search.mdx @@ -151,7 +151,7 @@ And if you're running an older version of the SDK, you might need to upgrade it #!pip install --upgrade cohere ``` -Get your Cohere API key by [signing up here](https://os.cohere.ai/register). Paste it in the cell below. +Get your Cohere API key by [signing up here](https://dashboard.cohere.ai/register). Paste it in the cell below. ## 1. Getting Set Up @@ -173,7 +173,7 @@ warnings.filterwarnings('ignore') pd.set_option('display.max_colwidth', None) ``` -You'll need your API key for this next cell. [Sign up to Cohere](https://os.cohere.ai/) and get one if you haven't yet. +You'll need your API key for this next cell. [Sign up to Cohere](https://dashboard.cohere.ai/) and get one if you haven't yet. ```python PYTHON model_name = "embed-english-v3.0" diff --git a/scripts/cookbooks-mdx/hello-world-meet-ai.mdx b/scripts/cookbooks-mdx/hello-world-meet-ai.mdx index de119e065..d98018ed5 100644 --- a/scripts/cookbooks-mdx/hello-world-meet-ai.mdx +++ b/scripts/cookbooks-mdx/hello-world-meet-ai.mdx @@ -146,7 +146,7 @@ We’ll cover three groups of tasks that you will typically work on when dealing - Classifying text - Analyzing text -The first step is to install the Cohere Python SDK. Next, create an API key, which you can generate from the Cohere [dashboard](https://os.cohere.ai/register) or [CLI tool](https://docs.cohere.ai/cli-key). +The first step is to install the Cohere Python SDK. Next, create an API key, which you can generate from the Cohere [dashboard](https://dashboard.cohere.ai/register) or [CLI tool](https://docs.cohere.ai/cli-key). ```python PYTHON ! pip install cohere altair umap-learn -q diff --git a/scripts/cookbooks-mdx/text-classification-using-embeddings.mdx b/scripts/cookbooks-mdx/text-classification-using-embeddings.mdx index f03a02b17..566d0dcb0 100644 --- a/scripts/cookbooks-mdx/text-classification-using-embeddings.mdx +++ b/scripts/cookbooks-mdx/text-classification-using-embeddings.mdx @@ -245,7 +245,7 @@ labels_test = labels_test[:95] ## 2. Set up the Cohere client and get the embeddings of the reviews -We're now ready to retrieve the embeddings from the API. You'll need your API key for this next cell. [Sign up to Cohere](https://os.cohere.ai/) and get one if you haven't yet. +We're now ready to retrieve the embeddings from the API. You'll need your API key for this next cell. [Sign up to Cohere](https://dashboard.cohere.ai/) and get one if you haven't yet. ```python PYTHON model_name = "embed-english-v3.0"