Skip to content

Commit 11e60c2

Browse files
authored
Merge pull request #178 from codelion/cepo-fixes-1.1
Cepo 1.1 fixes
2 parents 2aca9b8 + fd34777 commit 11e60c2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

optillm/__init__.py

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

44
# Version information
5-
__version__ = "0.1.9"
5+
__version__ = "0.1.10"
66

77
# Get the path to the root optillm.py
88
spec = util.spec_from_file_location(

scripts/eval_aime_benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
logger = logging.getLogger(__name__)
2020

2121
# Initialize OpenAI client
22-
client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"), base_url="https://openrouter.ai/api/v1")
22+
# client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"), base_url="https://openrouter.ai/api/v1")
2323

24-
# client = OpenAI(api_key="optillm", base_url="http://localhost:8001/v1")
24+
client = OpenAI(api_key="optillm", base_url="http://localhost:8888/v1")
2525

2626
SYSTEM_PROMPT = '''You are solving AIME (American Invitational Mathematics Examination) problems.
2727

setup.py

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

44
setup(
55
name="optillm",
6-
version="0.1.9",
6+
version="0.1.10",
77
packages=find_packages(include=['optillm', 'optillm.*']), # This ensures all subpackages are included
88
py_modules=['optillm'],
99
package_data={

0 commit comments

Comments
 (0)