tribeblend-etl-compact

1
license:apache-2.0
by
TribeBlend
Language Model
OTHER
0.5B params
New
1 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
2GB+ RAM
Mobile
Laptop
Server
Quick Summary

AI model with specialized capabilities.

Device Compatibility

Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
1GB+ RAM

Code Examples

How to Usebashllama.cpp
# Download the model
huggingface-cli download TribeBlend/tribeblend-etl-compact --local-dir ./tribeblend-etl-compact

# Run with llama.cpp
./llama-cli -m ./tribeblend-etl-compact/tribeblend-etl-compact-q4_k_m.gguf \
  -p "Transform this data: filter rows where sales > 1000 and group by region" \
  -n 256
With Python (llama-cpp-python)pythonllama.cpp
from llama_cpp import Llama

llm = Llama(
    model_path="./tribeblend-etl-compact-q4_k_m.gguf",
    n_ctx=4096,
    n_threads=4
)

response = llm.create_chat_completion(
    messages=[
        {"role": "system", "content": "You are a data transformation assistant."},
        {"role": "user", "content": "How do I join two tables on customer_id?"}
    ]
)

print(response["choices"][0]["message"]["content"])

Deploy This Model

Production-ready deployment in minutes

Together.ai

Instant API access to this model

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.