BothBosu/multi-agent-scam-conversation
Viewer • Updated • 1.6k • 170 • 7
How to use supreme-lab/ai-in-the-loop with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="supreme-lab/ai-in-the-loop") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("supreme-lab/ai-in-the-loop", dtype="auto")How to use supreme-lab/ai-in-the-loop with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "supreme-lab/ai-in-the-loop"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "supreme-lab/ai-in-the-loop",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/supreme-lab/ai-in-the-loop
How to use supreme-lab/ai-in-the-loop with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "supreme-lab/ai-in-the-loop" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "supreme-lab/ai-in-the-loop",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "supreme-lab/ai-in-the-loop" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "supreme-lab/ai-in-the-loop",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use supreme-lab/ai-in-the-loop with Docker Model Runner:
docker model run hf.co/supreme-lab/ai-in-the-loop
This repository contains instruction-tuned large language models (LLMs) designed for real-time scam detection, conversational scam-baiting, and privacy-preserving federated learning.
The models are trained and evaluated as part of the paper:
AI-in-the-Loop: Privacy Preserving Real-Time Scam Detection and Conversational Scambaiting by Leveraging LLMs and Federated Learning
from transformers import AutoModelForCausalLM, AutoTokenizer
# Replase the <x> with 2 or 3 and Nothing (when it is llama-guard-multi-task)
model_id = "supreme-lab/ai-in-the-loop/llama-guard-<x>-multi-task"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
inputs = tokenizer("Scammer: Hello, I need your SSN.", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
If you use these models, please cite our paper:
@article{hossain2025aiintheloop,
title={AI-in-the-Loop: Privacy Preserving Real-Time Scam Detection and Conversational Scambaiting by Leveraging LLMs and Federated Learning},
author={Hossain, Ismail; Puppala, Sai; Alam, Md Jahangir; and Talukder, Sajedul},
journal={[arXiv preprint arXiv:2509.05362](https://arxiv.org/abs/2509.05362)},
year={2025}
}
Base model
OpenSafetyLab/MD-Judge-v0.1