File size: 833 Bytes
6d008f6
0af8e2c
 
 
 
 
 
 
 
 
 
2019270
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
language: en
tags:
  - chatbot
  - conversational
  - data-assistant
  - data-analyst
  - python
license: mit
---

# 🤖 Databoy Chatbot

Databoy is a conversational AI chatbot designed to assist data analysts and data science learners. It answers questions related to:

- Python and Pandas
- Data Cleaning and EDA
- Statistics and Visualization
- Interview Questions
- Common data workflows

## 🛠️ Model Details

- **Type**: Language Model (LLM)
- **Usage**: Text generation/chat
- **Framework**: Transformers (Hugging Face)
- **Hosted on**: Hugging Face Inference API

## 📦 Example Usage

```python
from transformers import pipeline

chatbot = pipeline("text-generation", model="GHarshasri/Databoy")
response = chatbot("Explain standard deviation in simple terms.", max_length=100)
print(response[0]["generated_text"])