-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path__manifest__.py
30 lines (29 loc) · 963 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "LiteLLM Proxy Integration",
"summary": "LiteLLM proxy integration for LLM module",
"description": """
Implements LiteLLM proxy service for the LLM integration module.
Supports proxying requests to various LLM providers through a central LiteLLM proxy server.
Features:
- Chat completions with streaming support
- Text embeddings
- Model listing
- Rate limiting and cost tracking through proxy
""",
"category": "Technical",
"version": "16.0.1.1.0",
"depends": ["llm"],
"external_dependencies": {
"python": ["requests"],
},
"data": [
"security/push_models_security.xml",
"data/llm_publisher.xml",
"views/provider_views.xml",
"wizards/push_models_wizard_views.xml",
],
"author": "Apexive Solutions LLC",
"website": "https://github.com/apexive/odoo-llm",
"license": "LGPL-3",
"installable": True,
}