Virbe Documentation
  • Say hi to Virtual Beings!
  • Getting started
    • Introduction to Virbe platform
      • Virbe-hosted launch
      • Azure-hosted deployment
  • Dashboard Management
    • Dashboard Architecture
    • Overview
    • Profiles
      • General
      • Language
      • Persona
      • Settings
        • Web widget profile settings
        • Metahuman kiosk profile settings
      • Deployment
        • Web widget deployment
        • Metahuman kiosk deployment
    • Configurations
      • Speech-to-Text
      • Text-to-Speech
      • AI Models
      • Conversational Engines
    • Personas
    • Knowledge Base
      • Best Practices for Knowledge Base Content
    • Data tables
    • Conversation Flows
      • Getting started with Conversation Flows
      • Managing nodes
      • Nodes
        • Logic nodes
          • Route by Profile
          • If/Else Router
          • Intent Matcher
        • Flow control nodes
          • Go to Flow
          • Checkpoint
        • Response nodes
          • Text
          • LLM Response
          • Call ConvAI
          • Behavior
        • Action nodes
          • Collect User Data
          • Quick Reply
          • Cards from Table
        • Context nodes
          • Find Record(s)
        • Integration nodes
          • Call Webhook
          • Custom Action
      • Troubleshooting Conversation Flows
  • Touchpoints
    • Kiosk Apps
      • Metahuman Kiosk
        • Hardware setup
          • Recommended setup
          • Computer
          • Screen
          • Microphones
          • IoT
          • Peripherals
          • Operating System
            • Windows
              • Login & power management
              • Other
              • OpenHab
            • Mac
            • Remote Access
        • Customer Experience
          • VAD & press-to-talk
          • Microphone settings
          • Avatars
    • Web Integration
Powered by GitBook
On this page

Was this helpful?

  1. Touchpoints
  2. Unity Integration

Open Source Integration

Last updated 2 years ago

Was this helpful?

If you are using an open source version , you will have to use the following Config file to configure the VirbeBeing component:

{
  "chat": {
    "enabled": true,
    "chatUrl": "http://localhost:8888/api/v1/chat",
    "origin": "http://localhost",
    "chatApiAccessKey": "47asdsa-1231-asdas-77fg"
  },
  "sttConfig": {
    "engine": "google-stt",
    "recordingChannels": 1,
    "recordingFrequency": 16000
  },
  "ttsConfig": {
    "engine": "amazon-polly",
    "audioChannels": 1,
    "audioFrequency": 16000,
    "audioSampleBits": 16,
    "audioType": "pcm"
  }
}

Save this JSON as TextAsset in your project Assets/, make sure you have locally launched the Docker containers with ./up.sh script and hit Play to test how it works.

Virbe Being Core Light