SDKs
Install and configure the official Addis AI Node.js and Python SDKs.
New
The official addisai SDKs are the recommended way to call Addis AI from Node.js and Python backends.
Install
npm install addisaipip install addisaiCreate a client
Set your key in the server environment:
export ADDIS_API_KEY="your_api_key"import AddisAI from "addisai";
const addis = new AddisAI();from addisai import AddisAI
addis = AddisAI()The SDKs read ADDIS_API_KEY by default. Keep this key on a trusted server—never in browser JavaScript, a mobile binary, or a public environment variable.
Choose an integration guide
The original integration guides remain the source of truth for application architecture: