Merge cluster to master #3

Merged
cyberes merged 163 commits from cluster into master 2023-10-27 19:19:22 -06:00
1 changed files with 0 additions and 1 deletions
Showing only changes of commit 81baf9616f - Show all commits

View File

@ -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']