diff --git a/software/pyproject.toml b/software/pyproject.toml index b706481..d2ec725 100644 --- a/software/pyproject.toml +++ b/software/pyproject.toml @@ -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 "] license = "AGPL" diff --git a/software/start.py b/software/start.py index a264719..d63b553 100644 --- a/software/start.py +++ b/software/start.py @@ -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}"