CoolFace
Datasetpublic

bhaiyasingh45/bhaiya-loan-assistant-dataset

Bhaiya & Company — Loan Assistant Training Dataset Instruction-tuning dataset for training a banking loan assistant chatbot. Format JSONL file with chat messages. Each line contains: { "messages": [ {"role": "system", "content": "You are a loan assistant..."}, {"role": "user", "content": "Am I eligible for a personal loan?"}, {"role": "assistant", "content": "Based on your details..."} ] } Topics Covered Personal loan eligibility… See the full description on the dataset page: https://huggingface.co/datasets/bhaiyasingh45/bhaiya-loan-assistant-dataset.

sourceHugging Faceapache-2.0updated 6mo agoView on Hugging Face
0likes5downloads
Dataset Card

Bhaiya & Company — Loan Assistant Training Dataset

Instruction-tuning dataset for training a banking loan assistant chatbot.

Format

JSONL file with chat messages. Each line contains:

json
{
  "messages": [
    {"role": "system", "content": "You are a loan assistant..."},
    {"role": "user", "content": "Am I eligible for a personal loan?"},
    {"role": "assistant", "content": "Based on your details..."}
  ]
}

Topics Covered

  • —Personal loan eligibility and requirements
  • —Business loan guidance
  • —Home loan documentation
  • —EMI calculations
  • —CIBIL score requirements
  • —Compliance boundaries (refuses investment advice, stock tips)

Usage

python
from datasets import load_dataset

dataset = load_dataset("bhaiyahnsingh45/bhaiya-loan-assistant-dataset", split="train")
print(dataset[0]["messages"])

Used By