You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

farabi-0.6B-agent-rag

Compact trilingual (Kazakh / Russian / English) language model for RAG and tool-calling agents.

Capabilities

  • RAG / grounded QA โ€” answers from provided context chunks; cites sources; abstains when evidence is insufficient
  • Tool calling โ€” Hermes-format; clarifies missing required arguments before calling; recovers gracefully from tool errors
  • Claim verification โ€” SUPPORTED / REFUTED / NOT_ENOUGH_INFO against provided passages
  • Rule & numeric compute โ€” business-day arithmetic, fee/eligibility calculations from provided rules
  • Multilingual โ€” Kazakh, Russian, English; handles cross-lingual RAG queries

Serving with vLLM

vllm serve nur-dev/farabi-0.6B-agent-rag \
  --enable-auto-tool-choice \
  --tool-call-parser hermes \
  --chat-template chat_template.jinja \
  --max-model-len 8192

OpenAI Agents SDK

import openai

client = openai.AsyncOpenAI(
    base_url="http://localhost:8000/v1",
    api_key="x",
)

response = await client.chat.completions.create(
    model="farabi-0.6B-agent-rag",
    messages=[{"role": "user", "content": "..."}],
    tools=[...],
    tool_choice="auto",
)
Downloads last month
5
Safetensors
Model size
0.6B params
Tensor type
BF16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support