Installation

Complete installation guide for DeepV-ADK.

System Requirements

Minimum Requirements

  • Node.js 18.0 or higher
  • 2GB RAM
  • 500MB disk space
  • Node.js 20.0 or higher
  • 4GB RAM
  • 1GB disk space
  • Package Installation

    Using npm

    ``bash npm install @deepv/adk-sdk `

    Using yarn

    `bash yarn add @deepv/adk-sdk `

    Using pnpm

    `bash pnpm add @deepv/adk-sdk `

    Configuration

    Create a
    .env file in your project root: `bash DEEPV_API_KEY=your_api_key_here DEEPV_ENVIRONMENT=production DEEPV_TIMEOUT=30000 `

    Verify Installation

    Run this test to verify your installation:
    `typescript import { DeepVClient } from '@deepv/adk-sdk'; async function testConnection() { const client = new DeepVClient({ apiKey: process.env.DEEPV_API_KEY }); const health = await client.health(); console.log('Connection successful:', health.status); } testConnection(); ``

    Troubleshooting

    Common Issues

    Issue: Module not found error
  • Solution: Clear node_modules and reinstall
  • Issue: Authentication failed
  • Solution: Verify your API key in the dashboard
  • Issue: Timeout errors
  • Solution: Increase timeout in configuration

Next Steps

Now that you've installed the SDK, learn about Authentication.

Found an issue? Help us improve this page.