Odia AI API
Odia AI API for jyotisha, mandira services, and adhyatmika content in native Odia script for Odisha.
Capabilities in Odia
Native Text Generation
Generate authentic Odia content — not translated from English. Proper grammar, idioms, and cultural context.
Voice AI
Speech recognition and synthesis in Odia. Build voice-first apps that sound natural to native speakers.
Astrology in Odia
Birth charts, horoscopes, predictions, and remedies generated natively in Odia script with proper terminology.
Temple Services
Chatbots, announcements, and notifications for temples serving Odia-speaking communities.
Code Example
import OpenAI from 'openai';
const xalen = new OpenAI({
baseURL: 'https://api.xalen.io/v1',
apiKey: process.env.XALEN_API_KEY
});
// Generate content in Odia (ଓଡ଼ିଆ)
const response = await xalen.chat.completions.create({
model: 'vedika-standard',
messages: [
{
role: 'system',
content: 'You are a Vedic astrology expert. Respond in Odia (ଓଡ଼ିଆ) using Odia script.'
},
{
role: 'user',
content: 'Explain the effects of Saturn transit in the 7th house.'
}
],
max_tokens: 1024
});
// Output will be native Odia in Odia script
console.log(response.choices[0].message.content);
FAQ
Does XALEN support Odia?
Yes. Native Odia generation in Odia script — not machine translation. Authentic grammar, idioms, and domain vocabulary.
How accurate is the Odia output?
Models trained on native Odia content produce authentic output with proper Odia rendering, correct grammar, and culturally appropriate expressions.
Is voice AI available in Odia?
Yes. Both speech-to-text (STT) and text-to-speech (TTS) are available in Odia for building voice-first applications.