Instructions to use H4CH3D3VT3ch/KAIROS_DESTILADO_V1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use H4CH3D3VT3ch/KAIROS_DESTILADO_V1 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="H4CH3D3VT3ch/KAIROS_DESTILADO_V1", filename="kairos_destilado-00001-of-00011.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use H4CH3D3VT3ch/KAIROS_DESTILADO_V1 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf H4CH3D3VT3ch/KAIROS_DESTILADO_V1 # Run inference directly in the terminal: llama cli -hf H4CH3D3VT3ch/KAIROS_DESTILADO_V1
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf H4CH3D3VT3ch/KAIROS_DESTILADO_V1 # Run inference directly in the terminal: llama cli -hf H4CH3D3VT3ch/KAIROS_DESTILADO_V1
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf H4CH3D3VT3ch/KAIROS_DESTILADO_V1 # Run inference directly in the terminal: ./llama-cli -hf H4CH3D3VT3ch/KAIROS_DESTILADO_V1
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf H4CH3D3VT3ch/KAIROS_DESTILADO_V1 # Run inference directly in the terminal: ./build/bin/llama-cli -hf H4CH3D3VT3ch/KAIROS_DESTILADO_V1
Use Docker
docker model run hf.co/H4CH3D3VT3ch/KAIROS_DESTILADO_V1
- LM Studio
- Jan
- Ollama
How to use H4CH3D3VT3ch/KAIROS_DESTILADO_V1 with Ollama:
ollama run hf.co/H4CH3D3VT3ch/KAIROS_DESTILADO_V1
- Unsloth Studio
How to use H4CH3D3VT3ch/KAIROS_DESTILADO_V1 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for H4CH3D3VT3ch/KAIROS_DESTILADO_V1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for H4CH3D3VT3ch/KAIROS_DESTILADO_V1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for H4CH3D3VT3ch/KAIROS_DESTILADO_V1 to start chatting
- Atomic Chat new
- Docker Model Runner
How to use H4CH3D3VT3ch/KAIROS_DESTILADO_V1 with Docker Model Runner:
docker model run hf.co/H4CH3D3VT3ch/KAIROS_DESTILADO_V1
- Lemonade
How to use H4CH3D3VT3ch/KAIROS_DESTILADO_V1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull H4CH3D3VT3ch/KAIROS_DESTILADO_V1
Run and chat with the model
lemonade run user.KAIROS_DESTILADO_V1-{{QUANT_TAG}}List all available models
lemonade list
| { | |
| "name": "webui", | |
| "private": true, | |
| "version": "1.0.0", | |
| "type": "module", | |
| "scripts": { | |
| "dev": "bash scripts/dev.sh", | |
| "build": "vite build && ./scripts/post-build.sh", | |
| "preview": "vite preview", | |
| "prepare": "svelte-kit sync || echo ''", | |
| "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | |
| "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | |
| "reset": "rm -rf .svelte-kit node_modules", | |
| "format": "prettier --write .", | |
| "lint": "prettier --check . && eslint .", | |
| "test": "npm run test:ui -- --run && npm run test:client -- --run && npm run test:unit -- --run && npm run test:e2e", | |
| "test:e2e": "playwright test", | |
| "test:client": "vitest --project=client", | |
| "test:unit": "vitest --project=unit", | |
| "test:ui": "vitest --project=ui", | |
| "storybook": "storybook dev -p 6006", | |
| "build-storybook": "storybook build", | |
| "cleanup": "rm -rf .svelte-kit build node_modules test-results" | |
| }, | |
| "devDependencies": { | |
| "@chromatic-com/storybook": "^4.1.2", | |
| "@eslint/compat": "^1.2.5", | |
| "@eslint/js": "^9.18.0", | |
| "@internationalized/date": "^3.10.1", | |
| "@lucide/svelte": "^0.515.0", | |
| "@playwright/test": "^1.49.1", | |
| "@storybook/addon-a11y": "^10.0.7", | |
| "@storybook/addon-docs": "^10.0.7", | |
| "@storybook/addon-svelte-csf": "^5.0.10", | |
| "@storybook/addon-vitest": "^10.0.7", | |
| "@storybook/sveltekit": "^10.0.7", | |
| "@sveltejs/adapter-static": "^3.0.10", | |
| "@sveltejs/kit": "^2.48.4", | |
| "@sveltejs/vite-plugin-svelte": "^6.2.1", | |
| "@tailwindcss/forms": "^0.5.9", | |
| "@tailwindcss/typography": "^0.5.15", | |
| "@tailwindcss/vite": "^4.0.0", | |
| "@types/node": "^22", | |
| "@vitest/browser": "^3.2.3", | |
| "bits-ui": "^2.14.4", | |
| "clsx": "^2.1.1", | |
| "dexie": "^4.0.11", | |
| "eslint": "^9.18.0", | |
| "eslint-config-prettier": "^10.0.1", | |
| "eslint-plugin-storybook": "^10.0.7", | |
| "eslint-plugin-svelte": "^3.0.0", | |
| "fflate": "^0.8.2", | |
| "globals": "^16.0.0", | |
| "http-server": "^14.1.1", | |
| "mdast": "^3.0.0", | |
| "mdsvex": "^0.12.3", | |
| "playwright": "^1.56.1", | |
| "prettier": "^3.4.2", | |
| "prettier-plugin-svelte": "^3.3.3", | |
| "prettier-plugin-tailwindcss": "^0.6.11", | |
| "rehype-katex": "^7.0.1", | |
| "remark-math": "^6.0.0", | |
| "sass": "^1.93.3", | |
| "storybook": "^10.0.7", | |
| "svelte": "^5.0.0", | |
| "svelte-check": "^4.0.0", | |
| "tailwind-merge": "^3.3.1", | |
| "tailwind-variants": "^3.2.2", | |
| "tailwindcss": "^4.0.0", | |
| "tw-animate-css": "^1.3.5", | |
| "typescript": "^5.0.0", | |
| "typescript-eslint": "^8.20.0", | |
| "unified": "^11.0.5", | |
| "uuid": "^13.0.0", | |
| "vite": "^7.2.2", | |
| "vite-plugin-devtools-json": "^0.2.0", | |
| "vitest": "^3.2.3", | |
| "vitest-browser-svelte": "^0.1.0" | |
| }, | |
| "dependencies": { | |
| "highlight.js": "^11.11.1", | |
| "mode-watcher": "^1.1.0", | |
| "pdfjs-dist": "^5.4.54", | |
| "rehype-highlight": "^7.0.2", | |
| "rehype-stringify": "^10.0.1", | |
| "remark": "^15.0.1", | |
| "remark-breaks": "^4.0.0", | |
| "remark-gfm": "^4.0.1", | |
| "remark-html": "^16.0.1", | |
| "remark-rehype": "^11.1.2", | |
| "svelte-sonner": "^1.0.5", | |
| "unist-util-visit": "^5.0.0" | |
| } | |
| } | |