Skip to main content

Tutorial 6: Incorporating AI Agents in Enterprise Architecture

Learn how to represent LLM-based autonomous agents, copilot workflows, foundation models, and telemetry monitoring in Scapius.

workspace ai_assistant_model "Customer Support Copilot" {

layer "Application Layer" {
agent ai_support_copilot "Customer Support AI Copilot" {
description "RAG-powered conversational assistant helping support agents draft responses"
model "gemini-2.5-flash"
autonomy_level "Supervised"
human_in_loop true
risk "Low"

relationships {
this reads data_kb_articles "Queries knowledge base embeddings"
this serves actor_support_agent "Assists tier-1 support engineers"
this governed_by pol_ai_ethics
}
}

data_object data_kb_articles "Knowledge Base Articles" {
classification "Internal"
}

actor actor_support_agent "Support Specialist" {
role "Tier-1 Agent"
}
}

layer "Governance Layer" {
policy pol_ai_ethics "AI Ethics & Data Privacy Charter" {
policy_type "AI Governance"
enforcement "Mandatory"
priority "Critical"
}
}
}