Skip to content

Commit 42c5293

Browse files
committed
bump version for new release
1 parent eb5bb2a commit 42c5293

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.12"
5+
__version__ = "0.1.13"
66

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

optillm/plugins/deepthink_plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
import logging
99
from typing import Tuple, Dict, Any
10-
from .self_discover import SelfDiscover
11-
from .uncertainty_cot import UncertaintyRoutedCoT
10+
from optillm.plugins.deepthink.self_discover import SelfDiscover
11+
from optillm.plugins.deepthink.uncertainty_cot import UncertaintyRoutedCoT
1212

1313
# Plugin identifier for optillm
1414
SLUG = "deepthink"

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.12",
6+
version="0.1.1",
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)