2023-03-07 04:23:36 +01:00
|
|
|
import asyncio
|
|
|
|
import json
|
2023-04-23 20:52:43 +02:00
|
|
|
import sys
|
2023-03-07 04:23:36 +01:00
|
|
|
|
2023-04-23 20:52:43 +02:00
|
|
|
try:
|
|
|
|
import websockets
|
|
|
|
except ImportError:
|
2023-05-10 03:49:39 +02:00
|
|
|
print("Websockets package not found. Make sure it's installed.")
|
2023-04-12 05:15:12 +02:00
|
|
|
|
2023-04-23 20:52:43 +02:00
|
|
|
# For local streaming, the websockets are hosted without ssl - ws://
|
|
|
|
HOST = 'localhost:5005'
|
|
|
|
URI = f'ws://{HOST}/api/v1/stream'
|
2023-03-06 12:13:50 +01:00
|
|
|
|
2023-04-23 20:52:43 +02: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-07 05:15:45 +02:00
|
|
|
|
2023-05-10 03:49:39 +02:00
|
|
|
|
2023-03-06 12:13:50 +01:00
|
|
|
async def run(context):
|
2023-04-23 20:52:43 +02:00
|
|
|
# Note: the selected defaults change from time to time.
|
|
|
|
request = {
|
|
|
|
'prompt': context,
|
|
|
|
'max_new_tokens': 250,
|
2023-08-02 19:52:20 +02:00
|
|
|
'auto_max_new_tokens': False,
|
2023-08-29 22:44:31 +02:00
|
|
|
'max_tokens_second': 0,
|
2023-06-14 01:34:35 +02:00
|
|
|
|
|
|
|
# Generation params. If 'preset' is set to different than 'None', the values
|
|
|
|
# in presets/preset-name.yaml are used instead of the individual numbers.
|
2023-07-12 05:01:03 +02:00
|
|
|
'preset': 'None',
|
2023-03-06 23:52:26 +01:00
|
|
|
'do_sample': True,
|
2023-06-14 01:34:35 +02:00
|
|
|
'temperature': 0.7,
|
2023-04-23 20:52:43 +02:00
|
|
|
'top_p': 0.1,
|
2023-03-06 23:52:26 +01:00
|
|
|
'typical_p': 1,
|
2023-05-21 20:11:57 +02:00
|
|
|
'epsilon_cutoff': 0, # In units of 1e-4
|
|
|
|
'eta_cutoff': 0, # In units of 1e-4
|
2023-06-01 04:44:38 +02:00
|
|
|
'tfs': 1,
|
|
|
|
'top_a': 0,
|
2023-04-23 20:52:43 +02:00
|
|
|
'repetition_penalty': 1.18,
|
2023-06-29 18:40:13 +02:00
|
|
|
'repetition_penalty_range': 0,
|
2023-04-23 20:52:43 +02:00
|
|
|
'top_k': 40,
|
2023-03-06 23:52:26 +01:00
|
|
|
'min_length': 0,
|
|
|
|
'no_repeat_ngram_size': 0,
|
|
|
|
'num_beams': 1,
|
|
|
|
'penalty_alpha': 0,
|
|
|
|
'length_penalty': 1,
|
|
|
|
'early_stopping': False,
|
2023-05-23 00:37:24 +02:00
|
|
|
'mirostat_mode': 0,
|
|
|
|
'mirostat_tau': 5,
|
|
|
|
'mirostat_eta': 0.1,
|
2023-08-06 22:22:48 +02:00
|
|
|
'guidance_scale': 1,
|
|
|
|
'negative_prompt': '',
|
2023-06-14 01:34:35 +02:00
|
|
|
|
2023-03-22 19:40:20 +01:00
|
|
|
'seed': -1,
|
2023-04-12 05:25:30 +02:00
|
|
|
'add_bos_token': True,
|
2023-04-16 19:24:49 +02:00
|
|
|
'truncation_length': 2048,
|
|
|
|
'ban_eos_token': False,
|
|
|
|
'skip_special_tokens': True,
|
2023-04-23 20:52:43 +02:00
|
|
|
'stopping_strings': []
|
2023-03-06 23:52:26 +01:00
|
|
|
}
|
2023-03-06 12:13:50 +01:00
|
|
|
|
2023-05-04 01:44:30 +02:00
|
|
|
async with websockets.connect(URI, ping_interval=None) as websocket:
|
2023-04-23 20:52:43 +02:00
|
|
|
await websocket.send(json.dumps(request))
|
|
|
|
|
2023-05-10 03:49:39 +02:00
|
|
|
yield context # Remove this if you just want to see the reply
|
2023-04-23 20:52:43 +02:00
|
|
|
|
|
|
|
while True:
|
|
|
|
incoming_data = await websocket.recv()
|
|
|
|
incoming_data = json.loads(incoming_data)
|
2023-03-06 12:13:50 +01:00
|
|
|
|
2023-04-23 20:52:43 +02:00
|
|
|
match incoming_data['event']:
|
|
|
|
case 'text_stream':
|
|
|
|
yield incoming_data['text']
|
|
|
|
case 'stream_end':
|
|
|
|
return
|
2023-03-06 12:13:50 +01:00
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
|
2023-04-23 20:52:43 +02:00
|
|
|
async def print_response_stream(prompt):
|
2023-03-06 23:52:26 +01:00
|
|
|
async for response in run(prompt):
|
2023-04-23 20:52:43 +02:00
|
|
|
print(response, end='')
|
2023-05-10 03:49:39 +02:00
|
|
|
sys.stdout.flush() # If we don't flush, we won't see tokens in realtime.
|
2023-03-06 12:13:50 +01:00
|
|
|
|
|
|
|
|
2023-04-23 20:52:43 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
prompt = "In order to make homemade bread, follow these steps:\n1)"
|
|
|
|
asyncio.run(print_response_stream(prompt))
|