Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

content updates #16

Merged
merged 12 commits into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions fern/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -396,3 +396,5 @@ redirects:
destination: /docs/fine-tuning
- source: /docs/embed-2
destination: /docs/cohere-embed
- source: /docs/fine-tuning-with-the-web-ui
destination: /docs/fine-tuning-with-the-cohere-dashboard
2 changes: 1 addition & 1 deletion fern/fern.config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"organization": "cohere",
"version": "0.37.13"
"version": "0.37.15"
}
2 changes: 1 addition & 1 deletion fern/pages/-ARCHIVE-/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name is <<name>>

email is <<email>>

apiKey is <<apiKey>>
apiKey is Your API key

key is <<key>>

Expand Down
8 changes: 4 additions & 4 deletions fern/pages/cohere-api/about.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ python -m pip install cohere --upgrade
```python
import cohere

co = cohere.Client("<<apiKey>>")
co = cohere.Client("Your API key")

response = co.chat(
message="hello world!"
Expand All @@ -51,7 +51,7 @@ npm i -s cohere-ai
const { CohereClient } = require("cohere-ai");

const cohere = new CohereClient({
token: "<<apiKey>>",
token: "Your API key",
});

(async () => {
Expand Down Expand Up @@ -83,7 +83,7 @@ import java.util.List;

public class ChatPost {
public static void main(String[] args) {
Cohere cohere = Cohere.builder().token("<<apiKey>>").build();
Cohere cohere = Cohere.builder().token("Your API key").build();

NonStreamedChatResponse response = cohere.chat(
ChatRequest.builder()
Expand Down Expand Up @@ -115,7 +115,7 @@ import (
)

func main() {
co := client.NewClient(client.WithToken("<<apiKey>>"))
co := client.NewClient(client.WithToken("Your API key"))

resp, err := co.Chat(
context.TODO(),
Expand Down
Loading
Loading