Creates a new model
Creates a new model. Pass a LoRA config to create a new LoRA adapter for the base model.
post/api/v1/create_model
Request body
Example request
{
"lora_config": {
"rank": 16,
"seed": 42
},
"base_model": "meta-llama/Llama-3.2-1B"
}Response
API future for creating model
Example response
{
"request_id": "123e4567-e89b-12d3-a456-426614174000",
"model_id": "123e4567-e89b-12d3-a456-426614174000"
}