Jovo Voice Framework Tutorials
Building conversational AI shouldn't mean rewriting your code for every new platform. Below are our core technical concepts for rapid interaction development.
1. Component Architecture
Jovo v4 introduces a component-based architecture for better state management. Instead of massive routing trees, isolate your logic.
import { Component, BaseComponent, Intents } from '@jovotech/framework';
@Component()
export class WelcomeComponent extends BaseComponent {
START() {
return this.$send('Hello! How can I help you today?');
}
}
@Component()
export class WelcomeComponent extends BaseComponent {
START() {
return this.$send('Hello! How can I help you today?');
}
}
2. External AI & LLM Integrations
Integrate third-party Language Models natively into your Intent handlers. Looking to build AI chatbots? Check out our dedicated AI blog for more resources.
For completely deprecated V3 tutorials, please navigate to the archived GitHub repositories.