Views
No views yet
1# Use a pipeline as a high-level helper
2from transformers import pipeline
3
4pipe = pipeline("text-generation", model="anwgpt/anwgpt4.1-base")
5
6# Example of text generation (you can modify the input text)
7print(pipe("The sky is blue because"))