Official SDKs
Use our official client libraries to integrate LiquidCortex into your applications.
Ruby
-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)
}