engines:get#

#rai engines:get [OPTIONS]

Get engine details.

Options#

OptionTypeDescription
--nameTextThe name of the engine to get details for.

Example#

Use the engines:get command to get details for a specific engine. For example, to get details for an engine named my_engine, execute the following command:

#$ rai engines:get --name my_engine

---------------------------------------------------


  Name       Size           State
 ─────────────────────────────────
  my_engine  HIGHMEM_X64_S  READY


---------------------------------------------------

If no engine named my_engine exists, an error message is displayed:

#
$ rai engines:get --name my_engine

---------------------------------------------------

Engine not found

---------------------------------------------------

If the --name option is missing, you are prompted to select the engine name interactively:

#❯ rai engines:get

---------------------------------------------------

? Engine name: my_engine


  Name       Size           State
 ─────────────────────────────────
  my_engine  HIGHMEM_X64_S  READY


---------------------------------------------------

See Also#