Skip to content

Commit

Permalink
fix relative import in lmtp_client
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeurerkellner committed Nov 15, 2023
1 parent 139b5e6 commit 797a95d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lmql/models/lmtp/lmtp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import json
import sys
import warnings
from .errors import LMTPStreamError
from lmql.models.lmtp.errors import LMTPStreamError

class LMTPWebSocketClient:
"""
Expand Down Expand Up @@ -146,7 +146,7 @@ async def interactive_client():
import termcolor

async with aiohttp.ClientSession() as session:
async with session.ws_connect('http://workstation:8888') as ws:
async with session.ws_connect('http://<your endpoint>:8888') as ws:
from lmql.runtime.tokenizer import tokenizer

model = sys.argv[1]
Expand Down

0 comments on commit 797a95d

Please sign in to comment.