POST
/
lora
curl --request POST \
  --url https://app.empower.dev/api/v1/lora \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "hf_revision": "c1b0db933684edbfe29a06fa47eb19cc48025e93",
  "hf_token": "hf_**********************************",
  "model_name": "IlyaGusev/saiga_mistral_7b_lora",
  "model_source": "HF_HUB",
  "name": "custom_mistral_7b_lora"
}'
{
  "active_deployment": {
    "base_model_name": "meta-llama/Llama-2-7b-chat-hf",
    "created_at": 1706652711,
    "creator": {
      "actor_type": "USER",
      "api_key": {
        "name": "<string>"
      },
      "user": {
        "email": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "profile_image_url": "<string>"
      }
    },
    "hf_revision": "c1b0db933684edbfe29a06fa47eb19cc48025e93",
    "model_name": "IlyaGusev/saiga_mistral_7b_lora",
    "model_source": "HF_HUB"
  },
  "name": "custom_mistral_7b_lora",
  "unit_price": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
model_name
string
required

Full name of the model. For Hugging Face model, use the Hugging Face repository id as the name.

Example:

"IlyaGusev/saiga_mistral_7b_lora"

model_source
enum<string>
required

Source of the model, currently only HF_HUB (Hugging Face hub) is supported.

Available options:
HF_HUB
hf_revision
string | null

Hugging Face repository revision, valid for Hugging Face models only.

Example:

"c1b0db933684edbfe29a06fa47eb19cc48025e93"

hf_token
string | null

Hugging Face access token (https://huggingface.co/docs/hub/en/security-tokens), useful when the model repository is private.

Example:

"hf_**********************************"

name
string | null

Name of the LoRA, used as the unique identifier, if not provided, it will be the same as the "model_name"

Example:

"custom_mistral_7b_lora"

Response

200
application/json
Lora is deployed successfully.
name
string
required

Name of the LoRA, used as the unique identifier.

Example:

"custom_mistral_7b_lora"

unit_price
number
required
active_deployment
object

Current active deployment of the LoRA.