Skip to content

Commit

Permalink
Add spec changes
Browse files Browse the repository at this point in the history
Co-authored-by: Michael <[email protected]>
  • Loading branch information
platform-endpoints and mkozakov committed Dec 3, 2024
1 parent 72ae511 commit d03fcc8
Show file tree
Hide file tree
Showing 14 changed files with 80 additions and 98 deletions.
115 changes: 52 additions & 63 deletions cohere-openapi.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion snippets/snippets/curl/rerank-post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ curl --request POST \
--header 'content-type: application/json' \
--header "Authorization: bearer $CO_API_KEY" \
--data '{
"model": "rerank-english-v3.0",
"model": "rerank-v3.5",
"query": "What is the capital of the United States?",
"top_n": 3,
"documents": ["Carson City is the capital city of the American state of Nevada.",
Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/curl/rerank-v2-post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ curl --request POST \
--header 'content-type: application/json' \
--header "Authorization: bearer $CO_API_KEY" \
--data '{
"model": "rerank-english-v3.0",
"model": "rerank-v3.5",
"query": "What is the capital of the United States?",
"top_n": 3,
"documents": ["Carson City is the capital city of the American state of Nevada.",
Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/go/rerank-post/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func main() {
{String: "Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages."},
{String: "Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district."},
},
Model: cohere.String("rerank-english-v3.0"),
Model: cohere.String("rerank-v3.5"),
},
)

Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/java/app/src/main/java/RerankPost.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static void main(String[] args) {
+ " country. As of 2017, capital"
+ " punishment is legal in 30 of the 50"
+ " states.")))
.model("rerank-english-v3.0")
.model("rerank-english-v3.5")
.topN(3)
.build());

Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/java/app/src/main/java/RerankV2Post.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static void main(String[] args) {
.v2()
.rerank(
V2RerankRequest.builder()
.model("rerank-english-v3.0")
.model("rerank-v3.5")
.query("What is the capital of the United States?")
.documents(
List.of(
Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/node/rerank-post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const cohere = new CohereClient({});
],
query: 'What is the capital of the United States?',
topN: 3,
model: 'rerank-english-v3.0',
model: 'rerank-v3.5',
});

console.log(rerank);
Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/node/rerank-v2-post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const cohere = new CohereClient({});
],
query: 'What is the capital of the United States?',
topN: 3,
model: 'rerank-english-v3.0',
model: 'rerank-v3.5',
});

console.log(rerank);
Expand Down
20 changes: 8 additions & 12 deletions snippets/snippets/python-async/rerank-post.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,19 @@

co = cohere.AsyncClient()

docs = [
"Carson City is the capital city of the American state of Nevada.",
"The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.",
"Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages.",
"Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.",
"Capital punishment has existed in the United States since beforethe United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states.",
]


async def main():
response = await co.rerank(
model="rerank-english-v2.0",
model="rerank-v3.5",
query="What is the capital of the United States?",
documents=docs,
documents=[
"Carson City is the capital city of the American state of Nevada.",
"The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.",
"Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages.",
"Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.",
"Capital punishment has existed in the United States since beforethe United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states.",
],
top_n=3,
)
print(response)


asyncio.run(main())
21 changes: 9 additions & 12 deletions snippets/snippets/python-async/rerank-v2-post.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,18 @@

co = cohere.AsyncClientV2()

docs = [
"Carson City is the capital city of the American state of Nevada.",
"The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.",
"Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages.",
"Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.",
"Capital punishment has existed in the United States since beforethe United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states.",
]


async def main():
response = await co.rerank(
model="rerank-english-v2.0",
model="rerank-v3.5",
query="What is the capital of the United States?",
documents=docs,
top_n=3,
documents=[
"Carson City is the capital city of the American state of Nevada.",
"The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.",
"Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages.",
"Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.",
"Capital punishment has existed in the United States since beforethe United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states.",
],
top_n=3
)
print(response)

Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/python/rerank-post.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
]

response = co.rerank(
model="rerank-english-v3.0",
model="rerank-v3.5",
query="What is the capital of the United States?",
documents=docs,
top_n=3,
Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/python/rerank-v2-post.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
]

response = co.rerank(
model="rerank-english-v3.0",
model="rerank-v3.5",
query="What is the capital of the United States?",
documents=docs,
top_n=3,
Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets/requests/rerank-post.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ documents:
punishment is legal in 30 of the 50 states.
query: What is the capital of the United States?
top_n: 3
model: rerank-english-v3.0
model: rerank-v3.5
2 changes: 1 addition & 1 deletion snippets/snippets/requests/rerank-v2-post.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ documents:
punishment is legal in 30 of the 50 states.
query: What is the capital of the United States?
top_n: 3
model: rerank-english-v3.0
model: rerank-v3.5

0 comments on commit d03fcc8

Please sign in to comment.