About

What we do?

We help you create AI applications. Itzam’s purpose is to give developers the best possible experience when developing AI apps.

What this means?

  • Swap models automatically or with one click;

  • Change the current prompt easily;

  • Integrate in 2 minutes;

  • And much more…

Features

🤖 Model Hot Swap

Change the current model - or the model settings - instantly.

💬 Prompt Management

Change the prompt instantly and compare the output with other executions.

💳 Costs & Usage

Track all your AI spending in one place.

👨🏻‍💻 Easy SDKs & API

Integrate AI in your product with 4 lines of code.

🛝  Playground

Tweak and test your workflow in the playground.

🧠 Knowledge

Manage the context - docs, images, links, texts - you want to give to the AI for each workflow.

🖼️ Attachments

Send attachments - docs, images - via API & SDKs.

How it works

We are divided into 2 components: the Dashboard and the Integrations (API & SDKs).

For example, let's imagine you want to create a support chat in your landing page and want it to be powered by AI.

Here’s how you would do this with Itzam:

Dashboard

Everything starts in the dashboard, where you will create a Workflow. A Workflow represents a functionality in your app, in this case, the support chat.

  1. Create a Workflow called “Support Chat”.

  2. Inside your Workflow you can set:

    • AI model (GPT o3, Claude 3.7, Gemini 2.5)

    • Model settings (style, response length)

    • Prompt (e.g. “You are a customer support agent from Acme Inc…”)

    • Knowledge (what the model will use as context, e.g. company docs, links)

  3. Great, now grab this Workflow’s slug and an API key in the dashboard and let's integrate!

API & SDKs

Now it’s time to integrate the Workflow in your app.

  1. Use the API key to authenticate:

    import { Itzam } from "itzam"; const itzam = new Itzam("my-great-api-key");
  2. Use the Workflow’s slug to run it with your user’s input:

    const response = await itzam.generateText({ input: "I am having trouble finding your documentation...", workflowSlug: "support-chat", }); console.log(response.text); // > "Follow this link to access our documentation: acme.com/docs"