You will see all our upcoming blogs here in this page

Building Your First CLLOVA Skill in Python

Python Code

This step-by-step guide will help you create a weather lookup skill.

1. Set Up Your Environment

pip install cllova-sdk
mkdir weather_skill && cd weather_skill

2. Create the Skill Class

from cllova.sdk import Skill, intent
import requests

class WeatherSkill(Skill):
    def initialize(self):
        self.register_intent("get_weather", self.handle_weather)
    
    @intent("get_weather")
    def handle_weather(self, location):
        api_key = "YOUR_API_KEY"
        url = f"https://api.weather.com/v1/{location}"
        response = requests.get(url).json()
        return {
            "response": f"Weather in {location}: {response['temp']}°C",
            "ui": {"type": "weather_card", "data": response}
        }

3. Deploy to Your Device

cllova skills pack .
cllova skills install weather_skill.zip

How Seoul Hospital Reduced Admin Work by 30% with CLLOVA

Hospital Use Case

The Challenge

Doctors at Seoul General spent 2.5 hours daily on manual data entry in EHR systems.

CLLOVA Solution

We implemented:

  • Custom voice commands for patient record retrieval
  • Medical terminology-optimized speech model
  • HIPAA-compliant on-premise deployment

Results

• 30% reduction in administrative time
• 99.4% accuracy on medical terms
• 78% doctor satisfaction rate

CLLOVA v2.4 Released with Multilingual Support

We're excited to announce CLLOVA now supports 12 new languages:

  • Hindi
  • Brazilian Portuguese
  • Arabic
  • Russian
  • Japanese
  • ...and 7 more

Upgrade Instructions

cllova update --channel stable
# Or for early access to new features:
cllova update --channel beta