Sempleo Docs
Admin

POC Setup

Internal guide for setting up proof-of-concept workspaces for prospective customers.

This guide is for Sempleo administrators. POC workspace creation requires super-admin access.

A proof-of-concept (POC) workspace is a pre-configured trial environment set up for a prospective customer to evaluate Sempleo.

Creating a POC Workspace

Use the admin API or dashboard to create a POC workspace:

Required Information

FieldDescription
Company nameThe prospect's company name
DomainCompany email domain (e.g., acme.com)
PlanUsually trial with extended days
Admin emailEmail for the primary contact
Admin nameName of the primary contact
Trial daysExtended trial period (default 14, POCs typically 30)
Bonus creditsAdditional credits beyond standard trial (optional)

Optional Pre-Configuration

FieldDescription
Team descriptionDescription for the auto-created "General" team
Agent slugsArray of agent slugs to pre-install
Welcome messageCustom message shown on their first login
Pre-install agentsAuto-install recommended agents

Via API

POST /api/v1/admin/poc
Content-Type: application/json
Authorization: Bearer <admin-token>
 
{
  "name": "Acme Corp",
  "domain": "acme.com",
  "plan": "trial",
  "adminEmail": "jane@acme.com",
  "adminName": "Jane Smith",
  "trialDays": 30,
  "bonusCredits": 5000,
  "sendInvite": true,
  "preInstallAgents": true,
  "teamDescription": "Acme operations team",
  "agentSlugs": ["customer-support", "knowledge-assistant"],
  "welcomeMessage": "Welcome to your Sempleo evaluation! Your dedicated account manager is available at support@sempleo.ai."
}

What Happens

When a POC workspace is created:

  1. A new company is created with the specified plan
  2. Trial credits are allocated (5,000 + bonus)
  3. An admin user account is created
  4. If sendInvite is true, an invitation email is sent
  5. If preInstallAgents is true, recommended agents are installed
  6. If agentSlugs are provided, specific agents are installed
  7. If teamDescription is set, a "General" team is created
  8. If welcomeMessage is set, it's shown on their dashboard

Monitoring POC Progress

Use the admin dashboard to track:

  • Agent usage (runs, questions answered)
  • Credit consumption
  • Document uploads
  • Team member additions
  • Login activity

Converting to Paid

When a POC converts:

  1. The prospect upgrades via Settings → Billing
  2. Or, an admin can change the plan via the admin API
  3. All data, agents, and configurations are preserved

On this page