> ## Documentation Index
> Fetch the complete documentation index at: https://docs.noxus.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# What is Noxus?

> Understanding Noxus concepts, platform, and infrastructure

## What is Noxus?

Noxus is a comprehensive **AI platform** that brings together **Flows**, **Agents**, and **Knowledge Bases** to create powerful AI-driven solutions.

Whether you're a startup moving fast or an enterprise with strict security requirements, Noxus provides the infrastructure, tools, and interfaces needed to build, deploy, and manage AI applications at scale. All in one integrated system.

**<Icon icon="blocks" /> For Builders** <br />
Create sophisticated automations using a visual interface or code

**<Icon icon="building" /> For Enterprises** <br />Deploy on your infrastructure with complete data control and compliance support

**<Icon icon="code" /> For Developers** <br />Integrate via Python SDK, REST API, or extend with custom plugins

***

## Why Noxus?

**Complete Platform** - Everything you need to build, deploy, and manage AI applications in one integrated system.

**Deployment Flexibility** - Run on our cloud, your infrastructure, or hybrid. Your choice, your control.

**Enterprise Ready** - Built for scale with worker pools, GPU support, SSO, audit logs, and compliance features.

**Developer Friendly** - Multiple integration paths (visual, SDK, API) with comprehensive documentation.

**Open Architecture** - Extend with custom plugins, integrate with any system, deploy on any infrastructure.

***

## Core Concepts

The Noxus platform is organized into distinct layers that work together to enable AI automation at scale.

### Organization & Access

Organize teams, manage access, and structure your work:

<CardGroup cols={2}>
  <Card title="Workspaces" icon="boxes" href="/core/concepts/workspaces">
    Isolated environments with independent resources, settings, and access controls. Organize by team, project, or client.
  </Card>

  <Card title="Users" icon="user" href="/core/concepts/users">
    Team members with role-based permissions. Control who can access, create, edit, or administer AI resources.
  </Card>
</CardGroup>

### AI Tools

Building blocks for AI-powered automation. Compose these to create complex agentic flows, multi-agent environments, and sophisticated AI systems:

<CardGroup cols={3}>
  <Card title="Flows" icon="workflow" href="/core/concepts/flows">
    Visual automation combining AI, data processing, and business logic through connected nodes.
  </Card>

  <Card title="Agents" icon="bot-message-square" href="/core/concepts/agents">
    Conversational AI that uses tools, searches knowledge, and executes other tools autonomously.
  </Card>

  <Card title="Knowledge Bases" icon="folder" href="/core/concepts/knowledge-bases">
    Semantic search powered by your documents and data. Give AI access to proprietary knowledge.
  </Card>
</CardGroup>

<Note>
  **Analytics & Governance:** All AI tools include comprehensive analytics, observability, and evaluations. Control safety guardrails, governance policies, and compliance at the organization level.
</Note>

### How Concepts Work Together

<img src="https://mintcdn.com/spot-16018069/L-YC9NEo1I_3FcMs/images/diagram-docs.drawio.svg?fit=max&auto=format&n=L-YC9NEo1I_3FcMs&q=85&s=262415d094a57274d0d7dac5085d04ac" alt="How Noxus concepts work together" width="730" height="372" data-path="images/diagram-docs.drawio.svg" />

**Example workflow:**

1. Create a **Workspace** and invite **Users** with appropriate roles
2. Configure **Models & Providers** for AI access
3. Upload documents to **Knowledge Bases** for semantic search
4. Build **Flows** using visual nodes or code
5. Deploy **Agents** that search knowledge and execute flows
6. Runs execute on **Worker Pools** with isolated compute and monitoring

***

## How to Use Noxus

Noxus provides multiple interfaces optimized for different use cases:

<Tabs>
  <Tab title="Visual Platform">
    Drag-and-drop flow builder, agent configuration, and real-time monitoring. Build sophisticated automations without writing code.

    **Key features:**

    * Visual node-based workflow builder
    * Real-time execution monitoring and debugging
    * Agent configuration with tools and knowledge bases
    * Knowledge base document management
    * Team collaboration with role-based access

    <Card title="Learn More" icon="pencil" href="/core/platform/editor">
      Explore the Visual Platform documentation
    </Card>
  </Tab>

  <Tab title="Python SDK">
    Full-featured SDK for building AI-powered applications programmatically. Integrate Noxus into your Python applications.

    ```python theme={null}
    from noxus_sdk.client import Client

    client = Client(api_key="your_api_key")

    # Run a flow
    result = client.flows.run(
        flow_id="wf_123",
        inputs={"query": "Analyze this data"}
    )

    # Chat with an agent
    conversation = client.conversations.create(agent_id="agent_456")
    response = conversation.chat("What's our revenue this quarter?")
    ```

    <Card title="Learn More" icon="python" href="/sdk/introduction">
      Explore the Python SDK documentation
    </Card>
  </Tab>

  <Tab title="REST API">
    Language-agnostic HTTP API for any platform or language. Access all Noxus features via standard REST endpoints.

    ```bash theme={null}
    curl -X POST https://api.noxus.ai/v1/flows/wf_123/run \
      -H "Authorization: Bearer ${API_KEY}" \
      -H "Content-Type: application/json" \
      -d '{"inputs": {"query": "Process this request"}}'
    ```

    **Available endpoints:**

    * Workflows and runs
    * Conversations and agents
    * Knowledge bases and documents
    * User and workspace management

    <Card title="Learn More" icon="code" href="/api-reference/introduction">
      Explore the REST API documentation
    </Card>
  </Tab>
</Tabs>

### Plugin extensions

Extend the platform with custom nodes, integrations, and specialized AI models. Build proprietary functionality and share across your organization.

**What you can build:**

* Custom nodes for proprietary systems
* Integrations for internal tools
* Specialized AI models and processors
* Reusable components for your team

<Card title="Learn More" icon="cloud-cog" href="/developers/plugins/overview">
  Explore plugin development documentation
</Card>

***

## Deployment Flexibility

Noxus adapts to your infrastructure and security requirements:

<CardGroup cols={2}>
  <Card title="SaaS (Cloud)" icon="cloud">
    Fully managed platform with zero infrastructure overhead. Get started in minutes.
  </Card>

  <Card title="On-Premises" icon="server">
    Deploy on your infrastructure with complete data control and customizable architecture.
  </Card>

  <Card title="Hybrid" icon="cloud-cog">
    Combine cloud management with on-premises execution for optimal flexibility.
  </Card>

  <Card title="Air-Gapped" icon="wifi-off">
    Secure deployments in completely isolated environments without internet connectivity.
  </Card>
</CardGroup>

### Enterprise Features

* **Worker pool isolation** - Separate processing by team, project, or security requirement
* **GPU support** - Dedicated GPU workers for AI-intensive operations
* **Network isolation** - Run in isolated networks or VPCs with complete control
* **Data residency** - Keep data within specific geographic regions
* **SSO & custom auth** - SAML, OAuth, or custom authentication providers
* **Compliance ready** - HIPAA, SOC 2, GDPR support
* **Audit logging** - Comprehensive activity logs for security and compliance
* **High availability** - Multi-region deployment with automatic failover

<Card title="Infrastructure Overview" icon="server" href="/core/infrastructure-overview">
  Explore deployment options and architecture details
</Card>

***

## Next Steps

<CardGroup cols={2}>
  <Card title="Start Building (SaaS)" icon="rocket" href="https://app.noxus.ai">
    Create a free account and start building AI flows in minutes
  </Card>

  <Card title="Explore Concepts" icon="lightbulb" href="/core/concepts/flows">
    Deep dive into flows, agents, and knowledge bases
  </Card>

  <Card title="Plan Deployment" icon="server" href="/core/infrastructure-overview">
    Understand deployment options and infrastructure requirements
  </Card>

  <Card title="Try the SDK" icon="python" href="/sdk/quickstart">
    Integrate Noxus into your applications
  </Card>
</CardGroup>

***

## Need Help?

<CardGroup cols={2}>
  <Card title="Contact Support" icon="Headset" href="mailto:help@noxus.ai">
    Get help from our team with setup, deployment, or usage questions
  </Card>

  <Card title="Schedule a Demo" icon="calendar" href="https://www.noxus.ai/contact">
    See Noxus in action with a personalized demo
  </Card>
</CardGroup>
