Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
add default examples
Browse files- .gitattributes +1 -0
- app.py +20 -0
- assets/art_critic.png +3 -0
- assets/recipe_burger.webp +3 -0
- assets/travel_tips.jpg +3 -0
.gitattributes
CHANGED
@@ -36,3 +36,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
36 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
37 |
*.png filter=lfs diff=lfs merge=lfs -text
|
38 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
36 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
37 |
*.png filter=lfs diff=lfs merge=lfs -text
|
38 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
39 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
app.py
CHANGED
@@ -210,6 +210,26 @@ examples = [
|
|
210 |
"files": ["assets/dogs.jpg"],
|
211 |
}
|
212 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
[
|
214 |
{
|
215 |
"text": "Describe this video",
|
|
|
210 |
"files": ["assets/dogs.jpg"],
|
211 |
}
|
212 |
],
|
213 |
+
[
|
214 |
+
{
|
215 |
+
"text": "Give me a short and easy recipe for this dish",
|
216 |
+
"files": ["assets/recipe_burger.webp"],
|
217 |
+
}
|
218 |
+
],
|
219 |
+
|
220 |
+
[
|
221 |
+
{
|
222 |
+
"text": "I want to go somewhere similar to the one in the photo. Give me destinations and travel tips",
|
223 |
+
"files": ["assets/travel_tips.jpg"],
|
224 |
+
}
|
225 |
+
],
|
226 |
+
|
227 |
+
[
|
228 |
+
{
|
229 |
+
"text": "As an art critic AI assistant, could you describe this painting in details and make a thorough critic?",
|
230 |
+
"files": ["assets/art_critic.png"],
|
231 |
+
}
|
232 |
+
],
|
233 |
[
|
234 |
{
|
235 |
"text": "Describe this video",
|
assets/art_critic.png
ADDED
![]() |
Git LFS Details
|
assets/recipe_burger.webp
ADDED
![]() |
Git LFS Details
|
assets/travel_tips.jpg
ADDED
![]() |
Git LFS Details
|