Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dziz
/
t
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dziz
commited on
Dec 22, 2025
Commit
0924b2b
Β·
verified
Β·
1 Parent(s):
805ac45
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from transformers import pipeline
2
+
3
+
pipe = pipeline("text-generation", model="google/functiongemma-270m-it")
4
+
messages = [
5
+
{"role": "user", "content": "Who are you?"},
6
+
]
7
+
pipe(messages)