> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clavata.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Javascript/Typescript SDK

> Install and use the Moonbounce JavaScript/TypeScript SDK.

## JavaScript / TypeScript

* **Package**: `@clavata/sdk`
* **Installation**:

```
npm install @clavata/sdk
```

* **Repository**: Available on [npm](https://www.npmjs.com/package/@clavata/sdk).

This SDK provides TypeScript definitions and is suitable for Node.js and browser environments, facilitating seamless integration into JavaScript applications.

## Labels v2 Evaluation

Labels v2 evaluation is currently beta and exposed through the beta namespace:

```ts theme={null}
const response = await client.beta.evaluateLabels({
  content: {
    content: { value: "Text to evaluate", $case: "text" },
    contentType: "text",
  },
  labelVersionIds: ["label-version-id-1", "label-version-id-2"],
  threshold: 0.5,
});
```

Request and response type names remain stable, including `EvaluateLabelsRequest` and `EvaluateLabelsResponse`.

## We'd Love to Hear From You

Whether you have a suggestion, feedback, or a bug to report, here are the best ways to get in touch:

* **In the App:** Use the **Feedback button** for direct suggestions.
* **On Slack:** Reach out to the team in your shared channel.
* **With your AM:** Talk to your dedicated account manager.
* **Via Email:** Send a message to [**support@moonbounce.io**](mailto:support@moonbounce.io).
* **Security, availability, or other incidents:** Use the in-app **Feedback button** or email [**support@moonbounce.io**](mailto:support@moonbounce.io). See [Customer Feedback](/feedback/customer_feedback) for what to include.
