We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75e957b commit 6d19b57Copy full SHA for 6d19b57
clients/python/llmengine/__init__.py
@@ -12,7 +12,7 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-__version__ = "0.0.0.b15"
+__version__ = "0.0.0b15"
16
17
import os
18
from typing import Sequence
@@ -76,6 +76,8 @@ def check_version():
76
current_version = __version__
77
response = requests.get("https://pypi.org/pypi/scale-llm-engine/json")
78
latest_version = response.json()["info"]["version"]
79
+ print(current_version)
80
+ print(latest_version)
81
82
if current_version != latest_version:
83
print(
0 commit comments