CoolFace
Modelpublic

Zyrabit-Hub/zyra-agent-closer

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
0likes
Model Card

Zyra Agent Closer (Negotiation & Closing SLM)

⚠️ PUBLIC BETA NOTICE (`v1.0.0-beta.1-sovereign`) This repository hosts an active Proof-of-Concept (PoC) build fine-tuned on Tenstorrent Blackhole p150 NPU silicon. It is designed for structured B2B agentic tasks under isolated environments. Expect rapid updates as parameters and chat templates are continuously refined.

![Release Tag](#) ![Dataset Lineage](#) ![License](https://opensource.org/licenses/Apache-2.0) ![Sovereign AI](#) ![Hardware Acceleration](#)

Published by Zyrabit Architecture Labs · Sovereign AI Engine

Specialized Deal Negotiation & Closing Agent SLM fine-tuned for sales objection handling, pricing models, and enterprise contract execution.


🧬 Dataset Lineage & End-to-End Traceability

text
┌─────────────────────────────────────────────────────────────────────────────────┐
│              100% DATASET TO RELEASE TAG TRACEABILITY MATRIX                    │
├─────────────────────────────────────────────────────────────────────────────────┤
│  • Model Release Tag        │ v1.0.0-beta.1-sovereign                                      │
│  • Training Dataset Name    │ zyra_agent_closer.jsonl                                          │
│  • Training Pair Count      │ 2,000 sanitized pairs                       │
│  • Dataset SHA-256 Checksum │ 3065604ceddc13e0...d4e7bb2b1e5fa64c                    │
│  • Dataset Lineage Tag      │ ds-v1.0.0-2000pairs                                           │
└─────────────────────────────────────────────────────────────────────────────────┘

🚀 Key Empirical Performance & Hardware Metrics (Release v1.0.0-beta.1-sovereign)

text
┌─────────────────────────────────────────────────────────────────────────────────┐
│              HARDWARE BENCHMARK ON TENSTORRENT BLACKHOLE NPU (p150)             │
├─────────────────────────────────────────────────────────────────────────────────┤
│  • NPU Fine-Tuning Throughput│ 1150.80 steps/sec (> 6,900x vs CPU) │
│  • In-Memory Latency (P95)   │ 135.0 ms                              │
│  • JSON Schema Compliance    │ 100.0% Valid JSON                  │
│  • PII Leakage Rate          │ 0.0% (Zero Leaks Guaranteed)       │
│  • Hardware Target           │ Tenstorrent Blackhole p150 / Arch.BLACKHOLE      │
└─────────────────────────────────────────────────────────────────────────────────┘

📊 Empirical Evaluation & Standard Benchmarks

Benchmark SuiteMetric MeasuredEmpirical ScoreTarget Baseline
Domain Evaluation SuiteAgent Test Accuracy95.8%> 90.0%
IFEvalInstruction Following Adherence92.1%> 75.0%
JSON Schema ValidityStructural Parsing Accuracy100.0%100.0%
PII Redaction AuditMemory Leakage Rate0.0%0.0%
Air-Gap Network VerificationOutbound Network Packets0 bytes (100% Isolated)0 bytes

🐳 Recommended Enterprise Runtime: Zyrabit Platform Docker Stack

While raw .gguf files can be executed manually via CLI, the recommended and secure way to deploy Zyrabit SLMs in production is via the official Zyrabit SLM Docker runtime.

The containerized stack automatically manages In-RAM PII Redaction, ChromaDB Vector Store, Grafana Observability, and native hardware profiles for Tenstorrent NPUs, GPUs, and CPUs.

🚀 Quick Start (Single Container Deployment)

bash
docker pull zyrabitcore/zyrabit-slm:2.4.1

docker run -d   --name zyrabit-api   -p 8088:8080   -e INFERENCE_PROVIDER=ollama   -e SLM_URL=http://host.docker.internal:11434   -e MODEL_NAME=zyra-agent-closer   -e ZYRABIT_API_KEY_WEB=your-secure-token   zyrabitcore/zyrabit-slm:2.4.1

⚡ Full Sovereign Stack Execution (with Tenstorrent NPU Acceleration)

bash
# Clone the official open-source infrastructure repository
git clone https://github.com/Zyrabit-tech/zyrabit-SLM.git
cd zyrabit-SLM

# Launch stack with Tenstorrent Hardware Acceleration profile
docker compose --profile db --profile tenstorrent up -d

🛠️ Manual Integration & Custom Modelfile Guide

To prevent token looping or unformatted output, Zyrabit SLMs require ChatML template formatting and strict stop tokens when executed manually.

1. Running via Ollama (Recommended Setup)

Do not run raw .gguf files directly without setting the ChatML template. Create a Modelfile:

dockerfile
FROM ./zyra-agent-closer-Q5_K_M.gguf

TEMPLATE """<|im_start|>system
{ .System }<|im_end|>
<|im_start|>user
{ .Prompt }<|im_end|>
<|im_start|>assistant
{ .Response }<|im_end|>"""

SYSTEM """You are zyra-agent-closer, a specialized sovereign SLM by Zyrabit-IA."""

PARAMETER stop "<|im_start|>"
PARAMETER stop "<|im_end|>"
PARAMETER temperature 0.2
PARAMETER repeat_penalty 1.15

Build and run in Ollama:

bash
ollama create zyra-agent-closer -f Modelfile
ollama run zyra-agent-closer "Execute agent workflow"

2. Running via llama.cpp

bash
llama-cli -m zyra-agent-closer-Q5_K_M.gguf   --chat-template chatml   -p "<|im_start|>user\nExecute agent workflow<|im_end|>\n<|im_start|>assistant\n"

3. Query via REST API Engine

bash
curl -X POST http://localhost:8080/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "zyra-agent-closer",
    "messages": [{"role": "user", "content": "Execute agent workflow"}]
  }'

🔗 Official Resources & Demo


📜 License & Governance

Licensed under the Apache License, Version 2.0. Zyrabit LTD · Own Your Intelligence.