Skylion007/openwebtext
Viewer β’ Updated β’ 8.01M β’ 64.3k β’ 512
CoffeeChatAI is a lightweight AI based Model English language model.
It was developed and customized by Adrian Charles and his team Bluckhut as a side project, with the goal of making an accessible, branded chatbot-style AI for text generation.
CoffeeChatAI can be used to generate text for creative, academic, or entertainment purposes.
β Possible Applications
β οΈ Limitations & Risks
You can load and use CoffeeChatAI directly with Hugging Face transformers:
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("topboykrepta/CoffeeChatAI")
model = AutoModelForCausalLM.from_pretrained("topboykrepta/CoffeeChatAI")
inputs = tokenizer("Hello, I am CoffeeChat AI,", return_tensors="pt")
outputs = model.generate(**inputs, max_length=30, num_return_sequences=2, do_sample=True)
for i, output in enumerate(outputs):
print(f"Generated {i+1}: {tokenizer.decode(output, skip_special_tokens=True)}")
---
from transformers import pipeline
generator = pipeline("text-generation", model="topboykrepta/CoffeeChatAI")
print(generator("Hello, I am CoffeeChat AI,", max_length=30, num_return_sequences=2))
---
Or with the Hugging Face pipeline:
If you use this model, please cite:
@misc{CoffeeChatAI2025,
author = {Adrian Charles and Team Bluckhut},
title = {CoffeeChatAI: A Tiny Chat Applications},
year = {2025},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/topboykrepta/CoffeeChatAI}},
}
---