Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Nexusflow
/
NexusRaven-V2-Demo
like
98
Runtime error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
venkat-srinivasan-nexusflow
commited on
May 28, 2024
Commit
12abad4
Β·
verified
Β·
1 Parent(s):
a8f6a3f
Update tools.py
Browse files
Files changed (1)
hide
show
tools.py
+3
-0
tools.py
CHANGED
Viewed
@@ -348,4 +348,7 @@ class Tools:
348
349
random.shuffle(all_reviews)
350
351
return all_reviews
348
349
random.shuffle(all_reviews)
350
351
+
# if the length > 20, limit it
352
+
all_reviews = all_reviews[:20]
353
+
354
return all_reviews