2023-03-06 22:23:36 -05:00
|
|
|
import asyncio
|
|
|
|
import json
|
2023-04-23 14:52:43 -04:00
|
|
|
import sys
|
2023-03-06 22:23:36 -05:00
|
|
|
|
2023-04-23 14:52:43 -04:00
|
|
|
try:
|
|
|
|
import websockets
|
|
|
|
except ImportError:
|
|
|
|
print("Websockets package not found. Make sure it's installed.")
|
2023-04-11 23:15:12 -04:00
|
|
|
|
2023-04-23 14:52:43 -04:00
|
|
|
# For local streaming, the websockets are hosted without ssl - ws://
|
|
|
|
HOST = 'localhost:5005'
|
|
|
|
URI = f'ws://{HOST}/api/v1/stream'
|
2023-03-06 06:13:50 -05:00
|
|
|
|
2023-04-23 14:52:43 -04:00
|
|
|
# For reverse-proxied streaming, the remote will likely host with ssl - wss://
|
|
|
|
# URI = 'wss://your-uri-here.trycloudflare.com/api/v1/stream'
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-03-06 06:13:50 -05:00
|
|
|
async def run(context):
|
2023-04-23 14:52:43 -04:00
|
|
|
# Note: the selected defaults change from time to time.
|
|
|
|
request = {
|
|
|
|
'prompt': context,
|
|
|
|
'max_new_tokens': 250,
|
2023-03-06 17:52:26 -05:00
|
|
|
'do_sample': True,
|
2023-04-23 14:52:43 -04:00
|
|
|
'temperature': 1.3,
|
|
|
|
'top_p': 0.1,
|
2023-03-06 17:52:26 -05:00
|
|
|
'typical_p': 1,
|
2023-04-23 14:52:43 -04:00
|
|
|
'repetition_penalty': 1.18,
|
|
|
|
'top_k': 40,
|
2023-03-06 17:52:26 -05:00
|
|
|
'min_length': 0,
|
|
|
|
'no_repeat_ngram_size': 0,
|
|
|
|
'num_beams': 1,
|
|
|
|
'penalty_alpha': 0,
|
|
|
|
'length_penalty': 1,
|
|
|
|
'early_stopping': False,
|
2023-03-22 14:40:20 -04:00
|
|
|
'seed': -1,
|
2023-04-11 23:25:30 -04:00
|
|
|
'add_bos_token': True,
|
2023-04-16 13:24:49 -04:00
|
|
|
'truncation_length': 2048,
|
|
|
|
'ban_eos_token': False,
|
|
|
|
'skip_special_tokens': True,
|
2023-04-23 14:52:43 -04:00
|
|
|
'stopping_strings': []
|
2023-03-06 17:52:26 -05:00
|
|
|
}
|
2023-03-06 06:13:50 -05:00
|
|
|
|
2023-05-03 19:44:30 -04:00
|
|
|
async with websockets.connect(URI, ping_interval=None) as websocket:
|
2023-04-23 14:52:43 -04:00
|
|
|
await websocket.send(json.dumps(request))
|
|
|
|
|
|
|
|
yield context # Remove this if you just want to see the reply
|
|
|
|
|
|
|
|
while True:
|
|
|
|
incoming_data = await websocket.recv()
|
|
|
|
incoming_data = json.loads(incoming_data)
|
2023-03-06 06:13:50 -05:00
|
|
|
|
2023-04-23 14:52:43 -04:00
|
|
|
match incoming_data['event']:
|
|
|
|
case 'text_stream':
|
|
|
|
yield incoming_data['text']
|
|
|
|
case 'stream_end':
|
|
|
|
return
|
2023-03-06 06:13:50 -05:00
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-04-23 14:52:43 -04:00
|
|
|
async def print_response_stream(prompt):
|
2023-03-06 17:52:26 -05:00
|
|
|
async for response in run(prompt):
|
2023-04-23 14:52:43 -04:00
|
|
|
print(response, end='')
|
|
|
|
sys.stdout.flush() # If we don't flush, we won't see tokens in realtime.
|
2023-03-06 06:13:50 -05:00
|
|
|
|
|
|
|
|
2023-04-23 14:52:43 -04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
prompt = "In order to make homemade bread, follow these steps:\n1)"
|
|
|
|
asyncio.run(print_response_stream(prompt))
|