EnCoach Odoo 19 custom modules
Full backend implementation with custom Odoo modules: - encoach_api: Core API, user management, JWT auth - encoach_exam: Exam generation (reading, writing, listening, speaking) - encoach_evaluate: AI-powered evaluation (writing, speaking) - encoach_training: Training tips and walkthrough - encoach_storage: File storage management - encoach_payment: Stripe, PayPal, Paymob integration - encoach_mail: Email notifications Made-with: Cursor
This commit is contained in:
16
encoach_ai/__manifest__.py
Normal file
16
encoach_ai/__manifest__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "EnCoach AI",
|
||||
"version": "19.0.1.0.0",
|
||||
"category": "Education",
|
||||
"summary": "Core AI services for the EnCoach IELTS platform",
|
||||
"description": "OpenAI integration, constants, blacklist validation, token counting.",
|
||||
"depends": ["encoach_core"],
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
],
|
||||
"installable": True,
|
||||
"license": "LGPL-3",
|
||||
"external_dependencies": {
|
||||
"python": ["openai", "tiktoken", "httpx", "tenacity", "numpy"],
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user