Skip to content

Commit 6791a72

Browse files
authored
Merge pull request #142 from codelion/codelion-patch-1
Update publish.yml
2 parents 744d810 + c6ddbba commit 6791a72

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ jobs:
8484
docker system prune -af
8585
# Remove all unused build cache
8686
docker builder prune -af
87-
# Optional: If you need more aggressive cleanup
88-
rm -rf /tmp/*
87+
# Clean only user-owned files in /tmp, ignore permission errors
88+
find /tmp -type f -user $(id -u) -exec rm -f {} + 2>/dev/null || true
8989
9090
- name: Extract metadata for Docker
9191
id: meta

scripts/eval_aime_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
logger = logging.getLogger(__name__)
1616

1717
# Initialize OpenAI client
18-
client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"), base_url="https://ot7nh9nqf4l7b43s.us-east-1.aws.endpoints.huggingface.cloud/v1/")
18+
client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"), base_url="https://openrouter.ai/api/v1")
1919

2020
SYSTEM_PROMPT = '''You are solving AIME (American Invitational Mathematics Examination) problems.
2121

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="optillm",
5-
version="0.0.29",
5+
version="0.0.30",
66
packages=find_packages(),
77
py_modules=['optillm'],
88
package_data={

0 commit comments

Comments
 (0)