Skip to content

Commit f8f405a

Browse files
authored
Merge pull request #40 from longtermrisk/v0.7
V0.7
2 parents 27fd898 + edc2d6d commit f8f405a

File tree

134 files changed

+10661
-6112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+10661
-6112
lines changed

.dockerignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ build-docker-in-runpod
1515
.env.prod
1616
.env.ow-dev
1717
.env.ow-migrations
18+
.env.legacy
19+
.env.worker
20+
.env.worker.backup
21+
.env.*
1822
openweights/dashboard/backend/.env.ow-dev
1923
openweights/dashboard/backend/.env.ow-migrations
2024
openweights/dashboard/frontend/.env.ow-dev
@@ -87,7 +91,7 @@ example/ft_job_artifacts/
8791
example/mcq_dataset.jsonl
8892
openweights/jobs/unsloth/logp.ipynb
8993

90-
openweights/dashboard/backend/static/
94+
# openweights/dashboard/backend/static/ - now included for cluster image
9195
example/_*
9296
.logs
9397
openweights/jobs/unsloth/check.ipynb

.env.worker.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
OPENWEIGHTS_API_KEY=...
2+
RUNPOD_API_KEY=...
3+
HF_USER=...
4+
HF_TOKEN=...
5+
HF_ORG=...

.gitignore

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ build-docker-in-runpod
77
.env.prod
88
.env.ow-dev
99
.env.ow-migrations
10+
.env.*
1011
openweights/cluster/load.sh
1112
openweights/dashboard/backend/.env.ow-dev
1213
openweights/dashboard/backend/.env.ow-migrations
@@ -38,7 +39,6 @@ cache
3839

3940
# Bazel IntelliJ plugin
4041
.ijwb/
41-
4242
# Python
4343
__pycache__/
4444
*.py[cod]
@@ -61,21 +61,44 @@ wheels/
6161
.installed.cfg
6262
*.egg
6363

64-
# Virtual Environment
64+
# Virtual environments
6565
venv/
6666
env/
6767
ENV/
6868

69-
# IDE
70-
.idea/
69+
# IDEs
7170
.vscode/
71+
.idea/
7272
*.swp
7373
*.swo
74+
*~
75+
76+
# Environment variables
77+
.env
78+
.env.local
79+
.env.dev
80+
.env.prod
81+
.env.legacy
82+
.env.worker
83+
84+
# Supabase
85+
.supabase/
86+
!.supabase/dev-project-ref
87+
!.supabase/prod-project-ref
88+
89+
# Logs
90+
*.log
7491

7592
# OS
7693
.DS_Store
7794
Thumbs.db
7895

96+
# Project specific
97+
outputs/
98+
tool_output/
99+
*.db
100+
cache/
101+
.env.backup
79102
example/ft_job_artifacts/
80103
example/mcq_dataset.jsonl
81104
openweights/jobs/unsloth/logp.ipynb
@@ -87,3 +110,5 @@ openweights/jobs/unsloth/check.ipynb
87110
.cache
88111
admin/
89112
todo.md
113+
.ow_sync
114+
.claude

0 commit comments

Comments
 (0)