Official SDKs

Use our official client libraries to integrate LiquidCortex into your applications.

Python

v1.2.0
Stable
pip install liquidcortex
View Documentation →

Node.js

v1.1.0
Stable
npm install @liquidcortex/sdk
View Documentation →

Go

v0.9.0
Beta
go get github.com/liquidcortex/go-sdk
View Documentation →

Ruby

-
Coming Soon

Python Quick Start

from liquidcortex import LiquidCortex

client = LiquidCortex(api_key="lc_live_sk_xxx")

# Chat with an AI employee
response = client.chat(
    employee="atlas",
    message="Schedule a meeting with the team"
)

print(response.content)
# "I've scheduled a team meeting for tomorrow at 2pm..."

Node.js Quick Start

import { LiquidCortex } from '@liquidcortex/sdk';

const client = new LiquidCortex('lc_live_sk_xxx');

// Chat with an AI employee
const response = await client.chat({
  employee: 'atlas',
  message: 'Schedule a meeting with the team'
});

console.log(response.content);

Go Quick Start

package main

import "github.com/liquidcortex/go-sdk"

func main() {
    client := liquidcortex.NewClient("lc_live_sk_xxx")

    response, _ := client.Chat(liquidcortex.ChatRequest{
        Employee: "atlas",
        Message:  "Schedule a meeting with the team",
    })

    fmt.Println(response.Content)
}