revert
This commit is contained in:
parent
21755450a3
commit
81baf9616f
|
@ -29,7 +29,6 @@ def tokenize(prompt: str, backend_url: str) -> int:
|
||||||
# Define a function to send a chunk to the server
|
# Define a function to send a chunk to the server
|
||||||
def send_chunk(chunk):
|
def send_chunk(chunk):
|
||||||
try:
|
try:
|
||||||
XXX
|
|
||||||
r = requests.post(f'{backend_url}/tokenize', json={'input': chunk}, verify=opts.verify_ssl, timeout=opts.backend_generate_request_timeout)
|
r = requests.post(f'{backend_url}/tokenize', json={'input': chunk}, verify=opts.verify_ssl, timeout=opts.backend_generate_request_timeout)
|
||||||
j = r.json()
|
j = r.json()
|
||||||
return j['length']
|
return j['length']
|
||||||
|
|
Reference in New Issue