Solutions

Solutions

Solutions are high-level containers that group related agents, knowledge bases, and content sources into a cohesive unit. They provide a single place to manage all the resources that work together to solve a particular business problem.

What are Solutions?

A solution brings together:

  • Agents — AI workflows that process information and generate outputs
  • Knowledge Bases — Collections of indexed content for semantic retrieval
  • Content Sources — RSS feeds, websites, and files that supply raw data

By grouping these resources under one solution, you get a clear overview of how they relate and can manage them as a unit rather than individually.

Creating a Solution

Via the App

  1. Navigate to Solutions in your account
  2. Click Create Solution
  3. Provide a name and optional description
  4. Save the solution
  5. Link existing agents, knowledge bases, and content sources from the solution detail page

Via the API

Create and manage solutions programmatically using the REST API:

curl -X POST https://api.seclai.com/solutions \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "My Solution", "description": "Groups my production resources"}'

See API Examples for complete code samples including linking resources and using AI assistants.

Linking Resources

After creating a solution you can link and unlink agents, knowledge bases, and content sources at any time. Linking is non-destructive — the underlying resources remain independent and can belong to multiple solutions simultaneously.

ActionDescription
Link AgentsAssociate one or more agents with the solution
Unlink AgentsRemove the association without deleting the agent
Link Knowledge BasesAssociate knowledge bases with the solution
Unlink Knowledge BasesRemove the association without deleting the KB
Link Content SourcesAssociate content sources with the solution
Unlink Content SourcesRemove the association without deleting the source

AI Assistants

Solutions support three built-in AI assistants that help you configure and optimise your setup. Each assistant follows a propose-then-accept workflow: the assistant generates a plan, you review it, and then accept or decline.

Source AI Assistant

Analyses your solution and suggests new content sources to add. Describe the kind of data you need and the assistant will recommend RSS feeds, websites, or other sources and can create them for you once you accept.

Knowledge Base AI Assistant

Helps you organise content into knowledge bases. It can suggest how to group your sources into knowledge bases, create new ones, and link them to your solution.

Solution AI Assistant

Provides holistic recommendations for your entire solution — from adjusting agent configurations to restructuring knowledge bases. Use it when you want a high-level review of your setup.

MCP Tools

All solution operations are also available as MCP tools, allowing AI coding assistants and other MCP-compatible clients to manage solutions on your behalf. See the MCP Server documentation for the full list of solution tools.

Next Steps

  • Agents — Learn about the agents you can link to solutions
  • Knowledge Bases — Understand how knowledge bases index content
  • Content Sources — Explore the types of content sources available
  • API Examples — Complete API code samples for solutions
  • MCP Server — Use MCP tools to manage solutions programmatically