Bumped version

This commit is contained in:
killian 2024-08-25 11:04:19 -07:00
parent f1ee068c0c
commit feddecdcc0
2 changed files with 1 additions and 3 deletions

View File

@ -4,7 +4,7 @@ packages = [
{include = "source"},
]
include = ["start.py"]
version = "0.0.13"
version = "0.0.14"
description = "The open-source language model computer"
authors = ["Killian <killian@openinterpreter.com>"]
license = "AGPL"

View File

@ -179,12 +179,10 @@ def run(
else:
### GET LOCAL URL
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(("8.8.8.8", 80))
ip_address = s.getsockname()[0]
s.close()
url = f"http://{ip_address}:{server_port}"