Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Datasets:
i-Lang
/
TelegramGuard
like
0
Follow
I-Lang Protocol
5
Modalities:
Text
Formats:
text
Size:
< 1K
Tags:
telegram
anti-spam
ilang
chatbot
Libraries:
Datasets
Croissant
License:
mit
Dataset card
Data Studio
Files
Files and versions
xet
Community
1
957d007
TelegramGuard
/
Dockerfile
ilang-ai
fix: HF Space health check on port 7860 + Node.js 24 Actions warning
59295ba
28 days ago
raw
Copy download link
history
blame
Safe
180 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
RUN
mkdir
-p data
EXPOSE
7860
CMD
[
"python"
,
"bot.py"
]