2023-03-06 18:34:36 -05:00
|
|
|
'''
|
|
|
|
|
|
|
|
Contributed by SagsMug. Thank you SagsMug.
|
|
|
|
https://github.com/oobabooga/text-generation-webui/pull/175
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
2023-03-06 22:23:36 -05:00
|
|
|
import asyncio
|
|
|
|
import json
|
2023-03-06 06:13:50 -05:00
|
|
|
import random
|
2023-03-06 22:23:36 -05:00
|
|
|
import string
|
|
|
|
|
2023-03-06 06:13:50 -05:00
|
|
|
import websockets
|
2023-03-06 22:23:36 -05:00
|
|
|
|
2023-03-06 06:13:50 -05:00
|
|
|
|
|
|
|
def random_hash():
|
2023-03-06 17:52:26 -05:00
|
|
|
letters = string.ascii_lowercase + string.digits
|
|
|
|
return ''.join(random.choice(letters) for i in range(9))
|
2023-03-06 06:13:50 -05:00
|
|
|
|
|
|
|
async def run(context):
|
2023-03-06 17:52:26 -05:00
|
|
|
server = "127.0.0.1"
|
|
|
|
params = {
|
|
|
|
'max_new_tokens': 200,
|
|
|
|
'do_sample': True,
|
|
|
|
'temperature': 0.5,
|
|
|
|
'top_p': 0.9,
|
|
|
|
'typical_p': 1,
|
|
|
|
'repetition_penalty': 1.05,
|
2023-03-15 10:04:30 -04:00
|
|
|
'encoder_repetition_penalty': 1.0,
|
2023-03-06 17:52:26 -05:00
|
|
|
'top_k': 0,
|
|
|
|
'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-03-06 17:52:26 -05:00
|
|
|
}
|
2023-04-06 00:22:15 -04:00
|
|
|
payload = json.dumps([context, params])
|
2023-03-06 17:52:26 -05:00
|
|
|
session = random_hash()
|
2023-03-06 06:13:50 -05:00
|
|
|
|
2023-03-06 17:52:26 -05:00
|
|
|
async with websockets.connect(f"ws://{server}:7860/queue/join") as websocket:
|
|
|
|
while content := json.loads(await websocket.recv()):
|
|
|
|
#Python3.10 syntax, replace with if elif on older
|
|
|
|
match content["msg"]:
|
|
|
|
case "send_hash":
|
|
|
|
await websocket.send(json.dumps({
|
|
|
|
"session_hash": session,
|
2023-03-22 14:40:20 -04:00
|
|
|
"fn_index": 12
|
2023-03-06 17:52:26 -05:00
|
|
|
}))
|
|
|
|
case "estimation":
|
|
|
|
pass
|
|
|
|
case "send_data":
|
|
|
|
await websocket.send(json.dumps({
|
|
|
|
"session_hash": session,
|
2023-03-22 14:40:20 -04:00
|
|
|
"fn_index": 12,
|
2023-03-06 17:52:26 -05:00
|
|
|
"data": [
|
2023-04-06 00:22:15 -04:00
|
|
|
payload
|
2023-03-06 17:52:26 -05:00
|
|
|
]
|
|
|
|
}))
|
|
|
|
case "process_starts":
|
|
|
|
pass
|
|
|
|
case "process_generating" | "process_completed":
|
|
|
|
yield content["output"]["data"][0]
|
|
|
|
# You can search for your desired end indicator and
|
|
|
|
# stop generation by closing the websocket here
|
|
|
|
if (content["msg"] == "process_completed"):
|
|
|
|
break
|
2023-03-06 06:13:50 -05:00
|
|
|
|
|
|
|
prompt = "What I would like to say is the following: "
|
|
|
|
|
|
|
|
async def get_result():
|
2023-03-06 17:52:26 -05:00
|
|
|
async for response in run(prompt):
|
|
|
|
# Print intermediate steps
|
|
|
|
print(response)
|
2023-03-06 06:13:50 -05:00
|
|
|
|
2023-03-06 17:52:26 -05:00
|
|
|
# Print final result
|
|
|
|
print(response)
|
2023-03-06 06:13:50 -05:00
|
|
|
|
2023-03-06 17:52:26 -05:00
|
|
|
asyncio.run(get_result())
|