Skip to main content

Pre-made Models

AIKit comes with pre-made models that you can use out-of-the-box!

If it doesn't include a specific model, you can always create your own images, and host in a container registry of your choice!

CPU

ModelOptimizationParametersCommandModel NameLicense
🦙 Llama 3Instruct8Bdocker run -d --rm -p 8080:8080 ghcr.io/sozercan/llama3:8bllama-3-8b-instructLlama
🦙 Llama 3Instruct70Bdocker run -d --rm -p 8080:8080 ghcr.io/sozercan/llama3:70bllama-3-70b-instructLlama
🦙 Llama 2Chat7Bdocker run -d --rm -p 8080:8080 ghcr.io/sozercan/llama2:7bllama-2-7b-chatLlama
🦙 Llama 2Chat13Bdocker run -d --rm -p 8080:8080 ghcr.io/sozercan/llama2:13bllama-2-13b-chatLlama
Ⓜ️ MixtralInstruct8x7Bdocker run -d --rm -p 8080:8080 ghcr.io/sozercan/mixtral:8x7bmixtral-8x7b-instructApache
🅿️ Phi 3Instruct3.8Bdocker run -d --rm -p 8080:8080 ghcr.io/sozercan/phi3:3.8bphi-3-3.8bMIT

NVIDIA CUDA

ModelOptimizationParametersCommandModel NameLicense
🦙 Llama 3Instruct8Bdocker run -d --rm --gpus all -p 8080:8080 ghcr.io/sozercan/llama3:8b-cudallama-3-8b-instructLlama
🦙 Llama 3Instruct70Bdocker run -d --rm --gpus all -p 8080:8080 ghcr.io/sozercan/llama3:70b-cudallama-3-70b-instructLlama
🦙 Llama 2Chat7Bdocker run -d --rm --gpus all -p 8080:8080 ghcr.io/sozercan/llama2:7b-cudallama-2-7b-chatLlama
🦙 Llama 2Chat13Bdocker run -d --rm --gpus all -p 8080:8080 ghcr.io/sozercan/llama2:13b-cudallama-2-13b-chatLlama
Ⓜ️ MixtralInstruct8x7Bdocker run -d --rm --gpus all -p 8080:8080 ghcr.io/sozercan/mixtral:8x7b-cudamixtral-8x7b-instructApache
🅿️ Phi 3Instruct3.8Bdocker run -d --rm --gpus all -p 8080:8080 ghcr.io/sozercan/phi3:3.8b-cudaphi-3-3.8bMIT
note

Please see models folder for pre-made model definitions.

If not being offloaded to GPU VRAM, minimum of 8GB of RAM is required for 7B models, 16GB of RAM to run 13B models, and 32GB of RAM to run 8x7B models.

CPU models requires minimum of AVX instruction set. You can check if your CPU supports AVX by running grep avx /proc/cpuinfo.

CUDA models includes CUDA v12. They are used with NVIDIA GPU acceleration.

Deprecated Models

The following pre-made models are deprecated and no longer updated. Images will continue to be pullable, if needed.

If you need to use these specific models, you can always create your own images, and host in a container registry of your choice!

CPU

ModelOptimizationParametersCommandLicense
🐬 Orca 213Bdocker run -d --rm -p 8080:8080 ghcr.io/sozercan/orca2:13bMicrosoft Research
🅿️ Phi 2Instruct2.7Bdocker run -d --rm -p 8080:8080 ghcr.io/sozercan/phi2:2.7bMIT

NVIDIA CUDA

ModelOptimizationParametersCommandLicense
🐬 Orca 213Bdocker run -d --rm --gpus all -p 8080:8080 ghcr.io/sozercan/orca2:13b-cudaMicrosoft Research
🅿️ Phi 2Instruct2.7Bdocker run -d --rm --gpus all -p 8080:8080 ghcr.io/sozercan/phi2:2.7b-cudaMIT