Better output from the same model. Fused computation, adaptive precision, surgical expert loading. 305 KB, 19 backends, zero dependencies. https://inference-x.com
12 lines
799 B
Bash
Executable File
12 lines
799 B
Bash
Executable File
#!/bin/bash
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# INFERENCE-X — Hello World Script
|
|
# Copyright (C) 2025-2026 Salka Elmadani. All rights reserved.
|
|
# Licensed under the Business Source License 1.1 (BSL-1.1)
|
|
# See LICENSE file for full terms. See LICENSE for terms.
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
|
|
MODEL=${1:-"./model.gguf"}
|
|
|
|
./inference-x "$MODEL" -p "Hello! Who are you?" -n 64 -t 0.6
|