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

# Overview

> Integrate Learning Commons evaluators directly into your application using official SDKs for TypeScript and more.

export const EarlyAccessCallout = ({children}) => <div className="eyebrow-callout not-prose rounded-xl border border-gray-200/80 p-5 dark:border-white/10" style={{
  marginBottom: "1rem",
  borderRadius: "4px"
}}>
    <div className="mb-3">
      <Badge color="green" size="md" icon="flask">
        Early access
      </Badge>
    </div>
    <div className="callout-body text-[15px] leading-relaxed text-gray-700 dark:text-gray-300">{children}</div>
    <style>{`.callout-body a { text-decoration: underline; text-decoration-color: #178251; }`}</style>
  </div>;

[SDK last updated March 20, 2026.](#sdk-release-history)

<EarlyAccessCallout>
  This functionality is actively evolving. Changes may occur as we expand capabilities and improve accuracy and reliability. Email [support@learningcommons.org](mailto:support@learningcommons.org) ↗ with your feedback or issues.
</EarlyAccessCallout>

Integrate evaluators using the official SDKs instead of managing raw API calls or writing evaluation prompts yourself.

## Available SDKs

### TypeScript

The TypeScript SDK provides a fully typed, developer-friendly interface for running evaluators from any Node.js or TypeScript project.

The SDK includes:

* Typed interfaces for all evaluator inputs and outputs
* Built-in error handling and retries
* All evaluators available through the SDK as they are launched
* Configurable [telemetry](/evaluators/sdks/telemetry) for usage insights

[For more info, see the TypeScript SDK README on GitHub](https://github.com/learning-commons-org/evaluators/blob/main/sdks/typescript/README.md) ↗

## Coming soon

We are actively working to expand SDK support to additional languages.

**Python**\
We are prioritizing a Python SDK to support the many developers already building edtech workflows in Python. [Sign up](http://platform.learningcommons.org/) ↗ for updates on availability.

**Other languages**\
Need a different language? [Let us know](mailto:support@learningcommons.org) ↗

## SDK release history

| Date           | Changed                                                                    |
| -------------- | -------------------------------------------------------------------------- |
| March 20, 2026 | Added support for Subject Matter Knowledge and Conventionality evaluators. |
| March 13, 2026 | First release.                                                             |
