Devana Logo
Rechercher la documentation ...Rechercher
CtrlK

Enterprise AI Platform for Intelligent Applications

Getting Started β€’ API Reference β€’ Deployment β€’ Examples

Version License

Overview

Devana.ai is an enterprise-grade AI platform that empowers organizations to deploy, integrate, and control AI assistants at scale. Built for privacy, compliance, and performance.

Key Capabilities

πŸ€– Custom AI Agents          πŸ“„ Document Intelligence      πŸ” Enterprise Security
   Deploy specialized         Process & analyze docs        SSO, RBAC, audit logs
   assistants in minutes      with Odin engine              GDPR & SOC 2 ready

πŸ”Œ Flexible Integration      πŸ“Š Usage Analytics            🏒 On-Premise Ready
   REST API, WebSocket,       Track tokens, costs,          Full Kubernetes support
   IFrame, SDKs               and performance               Private cloud deployment

Getting Started

Cloud Deployment

The fastest way to get started with Devana.ai:

# 1. Create account at devana.ai
# 2. Generate API key from Settings β†’ API
# 3. Make your first request

curl -X POST https://api.devana.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agentId": "your-agent-id",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Next steps:

  • Authentication Guide
  • API Reference
  • Integration Examples

Self-Hosted Deployment

Deploy Devana.ai in your infrastructure for full control:

  1. Review Requirements β†’ Sizing & Specifications
  2. Configure LLM Providers β†’ LLM Configuration
  3. Deploy with Kubernetes β†’ Installation Guide

Prerequisites:

  • Kubernetes 1.24+
  • PostgreSQL 14+
  • 16GB RAM minimum (see requirements for production sizing)

Documentation

For Developers

API Reference

Complete REST API documentation for building AI-powered applications.

  • Agents - Manage AI agents
  • Conversations - Chat & history
  • Completions - Streaming responses
  • Documents - Upload & process files

SDKs & Tools

Client libraries and integration packages.

  • devana-ws-tools - WebSocket client
  • n8n-nodes-devana - Workflow automation
  • Custom integrations via Tools API

Integration Guides

Embed Devana.ai in your applications.

  • IFrame Integration - Embed chatbots
  • Custom Tools - Extend with your APIs
  • Webhooks - Event-driven flows

Supported Formats

File types and data formats.

  • Documents (PDF, Office, Text)
  • Images with OCR support
  • Structured data (JSON, CSV)

For DevOps & SysAdmins

Deployment Guide

Production-ready deployment.

  • Requirements ⭐ Start here
  • Kubernetes - K8s/OpenShift
  • PostgreSQL - Database setup
  • LLM Providers - Model configuration

Operations

Monitor and maintain your deployment.

  • Health Checks - System monitoring
  • License Management - Usage tracking
  • Troubleshooting - Common issues

Authentication

Enterprise identity integration.

  • Azure AD, Google Workspace
  • LDAP, OIDC, SAML
  • Custom SSO providers

Architecture

System design and scaling.

  • Component architecture
  • Data flows and security
  • Performance optimization

For Product Teams

Changelogs

Track new features and improvements.

  • Devana Platform - Main platform updates (v0.6.0108)
  • Odin Service - Document processing engine (v0.1.25)

Examples

Basic Chat Completion

curl -X POST https://api.devana.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agentId": "cm123abc",
    "messages": [
      {"role": "user", "content": "Explain quantum computing"}
    ]
  }'

Streaming Response

const response = await fetch("https://api.devana.ai/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    agentId: "cm123abc",
    messages: [{ role: "user", content: "Tell me a story" }],
    stream: true,
  }),
});

const reader = response.body.getReader();
// Process stream...

IFrame Integration

<!-- Embed an AI assistant in your webpage -->
<iframe
  src="https://app.devana.ai/chat/your-agent-id"
  width="100%"
  height="600px"
  frameborder="0"
></iframe>

WebSocket Real-Time

import { DevanaWSClient } from "devana-ws-tools";

const client = new DevanaWSClient({
  apiKey: "YOUR_API_KEY",
  agentId: "your-agent-id",
});

// Register custom tool
client.registerTool({
  name: "getWeather",
  handler: async (params) => {
    return { temperature: 22, condition: "sunny" };
  },
});

await client.connect();

More examples:

  • IFrame Chatbot Widget
  • Custom Tools Implementation
  • n8n Workflow Automation

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                      Devana.ai Platform                     β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚                                                             β”‚
β”‚  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”‚
β”‚  β”‚  Front-end  β”‚  β”‚  API Server  β”‚  β”‚  Odin Service   β”‚   β”‚
β”‚  β”‚  (Next.js)  │◄──  (Node.js +  │◄──  (Document      β”‚   β”‚
β”‚  β”‚             β”‚  β”‚   GraphQL)   β”‚  β”‚   Processing)   β”‚   β”‚
β”‚  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β”‚
β”‚         β”‚                β”‚                     β”‚            β”‚
β”‚         β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜            β”‚
β”‚                          β–Ό                                  β”‚
β”‚            β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”                    β”‚
β”‚            β”‚  PostgreSQL               β”‚                    β”‚
β”‚            β”‚  (Relational + Vector DB) β”‚                    β”‚
β”‚            β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                    β”‚
β”‚                                                             β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                          β”‚
            β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
            β–Ό             β–Ό             β–Ό
    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”
    β”‚   LLM    β”‚   β”‚ Embedding β”‚  β”‚ Storage β”‚
    β”‚ Providersβ”‚   β”‚  Models   β”‚  β”‚ (S3/...)β”‚
    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Learn more: Architecture Documentation

Use Cases

πŸŽ“ Knowledge Management

Deploy RAG-powered assistants that answer questions from your documentation, wikis, and knowledge bases.

πŸ’Ό Customer Support

Integrate AI agents into your support workflow with custom tools, CRM connections, and escalation handling.

πŸ“Š Document Processing

Extract, analyze, and summarize documents at scale with Odin's OCR and NLP capabilities.

πŸ”§ Developer Tools

Build AI-powered features into your applications using our REST API, WebSocket SDK, or workflow automation.

Security & Compliance

  • Data Privacy: On-premise deployment keeps your data within your infrastructure
  • Access Control: Role-based permissions, SSO integration, audit logs
  • Compliance Ready: GDPR, SOC 2, ISO 27001 compliance support
  • Encryption: TLS in transit, encryption at rest for sensitive data

Learn more: Security Documentation

Support

Documentation & Resources

  • πŸ“– Full Documentation
  • πŸŽ“ Integration Guides
  • πŸ”§ Troubleshooting

Get Help

  • πŸ“§ Technical Support: support-it@devana.ai
  • πŸ› Bug Reports: tyr.devana.ai
  • 🌐 Website: devana.ai
  • πŸ’» GitHub: Devana β€’ Odin
Devana Logo

Api

  • Authentication
  • Endpoints
  • Integration
  • Reference
  • Readme

Changelogs

  • Devana
  • Odin

Deployment

  • Authentication
  • Configuration
  • Getting Started
  • Infrastructure
  • Monitoring

Sdks

  • Devana Ws Tools
  • N8n Nodes Devana
  • Readme

Β© 2025 Devana. All rights reserved.