mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-24 17:04:55 +00:00
Intern bootcamp env (#146)
* Created registry and started off the env * Local testing works * process working but error in gen * removed old code * adding debug, it's still not progressing to collect trajectories * linting * removed redundant settings
This commit is contained in:
parent
ea304892ee
commit
283877dd88
8 changed files with 1218 additions and 0 deletions
22
environments/intern_bootcamp/run_intern_bootcamp.py
Normal file
22
environments/intern_bootcamp/run_intern_bootcamp.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
Standalone entry point for InternBootcamp environment.
|
||||
This script avoids relative import issues when running directly.
|
||||
"""
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
# Add the atropos root directory to Python path
|
||||
atropos_root = os.path.dirname(
|
||||
os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
)
|
||||
sys.path.insert(0, atropos_root)
|
||||
|
||||
# Now import with absolute imports
|
||||
from environments.intern_bootcamp.intern_bootcamp_env import ( # noqa: E402
|
||||
InternBootcampEnv,
|
||||
)
|
||||
|
||||
if __name__ == "__main__":
|
||||
InternBootcampEnv.cli()
|
||||
Loading…
Add table
Add a link
Reference in a new issue