Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cohere-ai/cohere-typescript
The Cohere TypeScript SDK
https://github.com/cohere-ai/cohere-typescript
javascript nodejs npm-package sdk typescript
Last synced: 17 days ago
JSON representation
The Cohere TypeScript SDK
- Host: GitHub
- URL: https://github.com/cohere-ai/cohere-typescript
- Owner: cohere-ai
- License: mit
- Created: 2021-05-11T14:42:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-04T12:43:21.000Z (about 1 month ago)
- Last Synced: 2024-10-29T15:48:08.263Z (19 days ago)
- Topics: javascript, nodejs, npm-package, sdk, typescript
- Language: TypeScript
- Homepage: https://docs.cohere.ai
- Size: 3.89 MB
- Stars: 125
- Watchers: 7
- Forks: 18
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cohere TypeScript SDK
![](banner.png)
[![npm shield](https://img.shields.io/npm/v/cohere-ai)](https://www.npmjs.com/package/cohere-ai)
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-SDK%20generated%20by%20Fern-brightgreen)](https://github.com/fern-api/fern)The Cohere Typescript SDK allows access to Cohere models across many different platforms: the cohere platform, AWS (Bedrock, Sagemaker), Azure, GCP and Oracle OCI. For a full list of support and snippets, please take a look at the [SDK support docs page](https://docs.cohere.com/docs/cohere-works-everywhere).
## Documentation
Cohere documentation and API reference is available [here](https://docs.cohere.com/).
## Installation
```
npm i -s cohere-ai
```## Usage
```typescript
import { CohereClient } from "cohere-ai";const cohere = new CohereClient({
token: "YOUR_API_KEY",
});(async () => {
const chat = await cohere.chat({
model: "command",
message: "Tell me a story in 5 parts!",
});
console.log(chat);
})();
```## Streaming
The SDK supports streaming endpoints. To take advantage of this feature for chat,
use `chatStream`.```typescript
import { CohereClient } from "cohere-ai";const cohere = new CohereClient({
token: "YOUR_API_KEY",
});(async () => {
const stream = await cohere.chatStream({
model: "command",
message: "Tell me a story in 5 parts!",
});for await (const chat of stream) {
if (chat.eventType === "text-generation") {
process.stdout.write(chat.text);
}
}
})();
```## Errors
When the API returns a non-success status code (4xx or 5xx response),
a subclass of [CohereError](./src/errors/CohereError.ts) will be thrown:```TypeScript
import { CohereClient, CohereError, CohereTimeoutError } from "cohere-ai";const cohere = new CohereClient({
token: "YOUR_API_KEY",
});(async () => {
try {
await cohere.generate(/* ... */);
} catch (err) {
if (err instanceof CohereTimeoutError) {
console.log("Request timed out", err);
} else if (err instanceof CohereError) {
// catch all errors
console.log(err.statusCode);
console.log(err.message);
console.log(err.body);
}
}
})();
```## Beta status
This SDK is in beta, and while we will try to avoid it, there may be breaking changes between versions without a major version update. Therefore, we recommend pinning the package version to a specific version in your package.json file. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.
## Contributing
While we value open-source contributions to this SDK, the code is generated programmatically. Additions made directly would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!