- Fix ELAI video generation (correct render endpoint, script splitting for 60s limit) - Fix speaking script generation error handling and empty response display - Add custom exam list API (GET /api/exam/custom/list) - Add assignments REST API (list, create, get) - Add rubrics REST API (list, create) - Enhance Generation page: dynamic exam structures, auto-module selection, preview dialog, audio player - Improve submit feedback with exam ID and status in toast notifications - Fix ExamsListPage to show both custom exams and exam sessions - Connect RubricsPage to backend API with fallback data - Add Dockerfile, docker-compose.yml, requirements.txt for deployment - Fix placement, grading, scoring, and auth controllers - Add ErrorBoundary component for frontend resilience - Add QA report and credentials documentation Made-with: Cursor
31 lines
1012 B
Python
31 lines
1012 B
Python
{
|
|
"name": "EnCoach AI Services",
|
|
"version": "19.0.1.0.0",
|
|
"category": "Education",
|
|
"summary": "Central AI service layer — OpenAI, Whisper, Polly, ElevenLabs, GPTZero, ELAI",
|
|
"description": """
|
|
Provides a unified AI service layer for the EnCoach platform.
|
|
- OpenAI GPT-4o / GPT-3.5-turbo (chat, JSON generation, grading)
|
|
- OpenAI Whisper (speech-to-text)
|
|
- AWS Polly (text-to-speech)
|
|
- ElevenLabs (text-to-speech, multilingual)
|
|
- GPTZero (AI content detection)
|
|
- ELAI (avatar video generation)
|
|
- AI Coaching assistant
|
|
- AI Search, Insights, Report Narrative
|
|
""",
|
|
"author": "EnCoach",
|
|
"depends": ["base", "encoach_core"],
|
|
"external_dependencies": {
|
|
"python": ["openai", "boto3"],
|
|
},
|
|
"data": [
|
|
"security/ir.model.access.csv",
|
|
"views/ai_settings_views.xml",
|
|
"data/ai_defaults.xml",
|
|
],
|
|
"installable": True,
|
|
"application": True,
|
|
"license": "LGPL-3",
|
|
}
|