Launch Week 02 wrapped — explore all five launches

Provision Projects for Agents on the Fly

Spin up a dedicated Confident AI project for each agent your users build, then trace and evaluate every agent in isolation.

Overview

This guide is for teams that want to create Confident AI projects programmatically instead of creating them manually in the platform UI. It is especially useful for internal agent-building platforms, multi-tenant products, and proofs of concept where each agent (or tenant or customer) should have its own isolated Confident AI project.

For example, imagine an enterprise platform where every user builds their own agents. Each agent should get its own Confident AI project so its traces and evaluations stay isolated from every other agent on the platform.

In this guide, you will:

  • Configure the Admin SDK with one Organization API Key.
  • Create a project in code for each agent the moment it is built.
  • Store the returned Project API Key with the project ID for later trace routing.
  • Route traces to the correct project by setting the Project API Key on each trace.

By the end, your platform will be able to provision an isolated Confident AI project per agent on demand and send each agent's traces, datasets, and evaluations to the right workspace.

flowchart TB
    Org["Your Confident AI Organization"]

    Org --> AppA["Application A Project"]
    Org --> AppB["Application B Project"]
    Org --> AppC["Application C Project"]

    AppA --> AppAData["Application A traces<br/>Application A datasets<br/>Application A evaluations"]
    AppB --> AppBData["Application B traces<br/>Application B datasets<br/>Application B evaluations"]
    AppC --> AppCData["Application C traces<br/>Application C datasets<br/>Application C evaluations"]

    classDef org fill:#f8fafc,stroke:#334155,stroke-width:2px
    classDef project fill:#eef2ff,stroke:#4f46e5,stroke-width:1px
    classDef data fill:#f0fdf4,stroke:#16a34a,stroke-width:1px
    class Org org
    class AppA,AppB,AppC project
    class AppAData,AppBData,AppCData data

Build It

  1. Install SDKs

    The Admin SDK is available in both Python and TypeScript through confidentai. You also need deepeval to route traces into each project.

    pip install confidentai deepeval
  2. Configure Admin SDK

    Set CONFIDENT_ORG_API_KEY to your Organization API Key. The Admin SDK reads this variable by default when you create a client.

    export CONFIDENT_ORG_API_KEY="confident_us_org_..."
    app/confident.py
    from confidentai import ConfidentAI
    
    confident_ai = ConfidentAI()
  3. Provision Project

    Create a project for each application. The projects.create(...) call returns the new project and its first Project API Key. Store both values with that application so traces can be routed to the same project later.

    The storage helpers in this example represent your own database or persistence layer.

    app/onboarding.py
    from app.confident import confident_ai
    from app.storage import save_application_project
    
    def onboard_application(application_slug: str):
        new_project = confident_ai.projects.create(name=application_slug)
    
        save_application_project(
            application_slug,
            project_id=new_project.project.id,
            project_api_key=new_project.api_key.value,
        )
        return new_project.project.id
  4. Route Traces

    The Project API Key determines which project receives a trace. To keep applications isolated, set the key on the current trace inside the observed function.

    app/agent.py
    from openai import OpenAI
    from deepeval.tracing import observe, update_current_trace
    from app.storage import load_application_project
    
    client = OpenAI()
    
    @observe()
    def run_for_application(application_slug: str, query: str):
        application = load_application_project(application_slug)
        update_current_trace(confident_api_key=application.project_api_key)
    
        return client.chat.completions.create(
            model="gpt-4o",
            messages=[{"role": "user", "content": query}],
        ).choices[0].message.content
  5. Verify Routing

    Create a project for an application, execute the application, and confirm that the trace appears in the correct project.

    from app.onboarding import onboard_application
    from app.agent import run_for_application
    
    onboard_application("support-bot")
    run_for_application("support-bot", "What's on my agenda today?")

    Open the Observatory and switch to the support-bot project. The trace appears in that project, isolated from every other application.

    Traces in the Observatory

    Done ✅. The workflow now creates a dedicated project per application and routes traces using a single Organization API Key.

Next Steps

Now that each tenant or application can route traces to its own project, use these sections to extend the workflow:

Scaling beyond prototype?For teams evaluating Confident AI in productionTalk to us

Last updated on

Built byConfident AI