Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Datasets:
Hoyant-Su
/
ShellOps
like
1
Tasks:
Text Generation
Question Answering
Languages:
English
ArXiv:
arxiv:
2605.08013
Tags:
cli-agents
reinforcement-learning
filesystem
shell
verifiable-evaluation
License:
cc-by-4.0
Dataset card
Files
Files and versions
xet
Community
main
ShellOps
/
shellops_pro
/
assets
/
ShellOps_0b796d26f8
/
gold
/
src
/
utils
/
service.py
Hoyant-Su
Update ShellOps dataset
ac9f14b
4 days ago
raw
Copy download link
history
blame
contribute
delete
204 Bytes
def
service_func
(
x
):
if
x >
0
:
return
x *
2
return
-x
class
Service
:
def
__init__
(
self
):
self.count =
0
def
step
(
self
):
self.count +=
1
return
self.count