Models
Lumyx AI provides access to multiple AI models, each optimized for different tasks and use cases. Learn about available models and how to choose the right one for your application.
https://api.lumyx-ai.site/v1/models
Returns a list of all available models with their capabilities and specifications.
List Available Models
curl -X GET https://api.lumyx-ai.site/v1/models \ -H "Authorization: Bearer nova_your_api_key_here"
{
"object": "list",
"data": [ {
"id": "",
"object": "model",
"created": 1769093719,
"owned_by": "nova-ai",
"name": "Cody - v2",
"name": "Cody - v2",
"description": "",
"pricing": {
"prompt": "0.001000",
"completion": "0.002000",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
}, {
"id": "",
"object": "model",
"created": 1749850403,
"owned_by": "nova-ai",
"name": "Lucas xv",
"name": "Lucas xv",
"description": "Lucas xv a model for coding",
"pricing": {
"prompt": "0.000269",
"completion": "0.000384",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
}, {
"id": "",
"object": "model",
"created": 1769092713,
"owned_by": "nova-ai",
"name": "Lucy xv - v1",
"name": "Lucy xv - v1",
"description": "",
"pricing": {
"prompt": "0.001000",
"completion": "0.002000",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
}, {
"id": "",
"object": "model",
"created": 1766814757,
"owned_by": "nova-ai",
"name": "lumyx 1.0 - Thinking",
"name": "lumyx 1.0 - Thinking",
"description": "Nova 2.0 a thinking model still based on nova 2.2_2024_01_08",
"pricing": {
"prompt": "0.008900",
"completion": "0.082000",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
}, {
"id": "",
"object": "model",
"created": 1768812534,
"owned_by": "nova-ai",
"name": "lumyx 1.0 x2 - Thinker",
"name": "lumyx 1.0 x2 - Thinker",
"description": "",
"pricing": {
"prompt": "0.001000",
"completion": "0.002000",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
}, {
"id": "",
"object": "model",
"created": 1749849150,
"owned_by": "nova-ai",
"name": "lumyx Argo - 0.1",
"name": "lumyx Argo - 0.1",
"description": "nabzclan latest model",
"pricing": {
"prompt": "0.000240",
"completion": "0.000600",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
} ]
}
Available Models
Cody - v2
API Name: Cody_v2
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
Lucas xv
API Name: Lucas_Xv
Lucas xv a model for coding
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
Lucy xv - v1
API Name: Lucy_xv_v1
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
lumyx 1.0 - Thinking
API Name: Lumyx_1_0_Thinking
Nova 2.0 a thinking model still based on nova 2.2_2024_01_08
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
lumyx 1.0 x2 - Thinker
API Name: lumyx_1_0_x2_Thinker
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
lumyx Argo - 0.1
API Name: Lumyx_Argo_0_1
nabzclan latest model
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
Model Object
Model Properties
id
string
The unique identifier for the model. Use this value in the "model" field of API requests.
object
string
The object type, always "model".
created
integer
Unix timestamp of when the model was added to Lumyx AI.
owned_by
string
The organization that owns the model, always "nova-ai".
name
string
Human-readable display name for the model.
description
string
A detailed description of the model's capabilities and intended use cases.
capabilities
array
List of features the model supports: images, pdfs, code, documents, thinking, web_search, tools, uncensored.
Using Models in Requests
Specify the model in your chat completion requests:
curl -X POST https://api.lumyx-ai.site/v1/chat/completions \
-H "Authorization: Bearer nova_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"model": "nova_1_1",
"messages": [
{"role": "user", "content": "Hello, how can you help me today?"}
]
}'
Choosing the Right Model
| Use Case | Recommended Model | Why |
|---|---|---|
| General Chat | nova_1_1 |
Fast, balanced performance for everyday tasks |
| Code Assistance | nova_1_1 |
Optimized for programming tasks |
| Image Analysis | Vision-enabled model | Can process and understand images |
| Complex Reasoning | Thinking-enabled model | Shows step-by-step reasoning process |
| Document Processing | Document-enabled model | Can analyze PDFs and documents |
Models are updated regularly to improve performance and add new capabilities. Check the /api/v1/models endpoint for the latest available models.