Skip to content

Commit

Permalink
update dashboard links
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-support committed Nov 4, 2024
1 parent 9856d4a commit 1f9513b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion fern/pages/-ARCHIVE-/old-tutorials/semantic-search.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion fern/pages/-ARCHIVE-/text-classification-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion scripts/cookbooks-mdx/analyzing-hacker-news.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions scripts/cookbooks-mdx/basic-semantic-search.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/cookbooks-mdx/hello-world-meet-ai.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1f9513b

Please sign in to comment.