Skip to content

Commit

Permalink
Merge pull request #142 from codelion/codelion-patch-1
Browse files Browse the repository at this point in the history
Update publish.yml
  • Loading branch information
codelion authored Jan 21, 2025
2 parents 744d810 + c6ddbba commit 6791a72
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ jobs:
docker system prune -af
# Remove all unused build cache
docker builder prune -af
# Optional: If you need more aggressive cleanup
rm -rf /tmp/*
# Clean only user-owned files in /tmp, ignore permission errors
find /tmp -type f -user $(id -u) -exec rm -f {} + 2>/dev/null || true
- name: Extract metadata for Docker
id: meta
Expand Down
2 changes: 1 addition & 1 deletion scripts/eval_aime_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
logger = logging.getLogger(__name__)

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

SYSTEM_PROMPT = '''You are solving AIME (American Invitational Mathematics Examination) problems.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="optillm",
version="0.0.29",
version="0.0.30",
packages=find_packages(),
py_modules=['optillm'],
package_data={
Expand Down

0 comments on commit 6791a72

Please sign in to comment.