fix lint
This commit is contained in:
parent
4eef6284d8
commit
cd6133630e
1 changed files with 2 additions and 1 deletions
|
@ -60,7 +60,8 @@ class Pandora:
|
||||||
async def test():
|
async def test():
|
||||||
model = "text-davinci-002-render-sha-mobile"
|
model = "text-davinci-002-render-sha-mobile"
|
||||||
api_endpoint = "http://127.0.0.1:8008"
|
api_endpoint = "http://127.0.0.1:8008"
|
||||||
client = Pandora(api_endpoint)
|
async with aiohttp.ClientSession() as session:
|
||||||
|
client = Pandora(api_endpoint, session)
|
||||||
conversation_id = None
|
conversation_id = None
|
||||||
parent_message_id = str(uuid.uuid4())
|
parent_message_id = str(uuid.uuid4())
|
||||||
first_time = True
|
first_time = True
|
||||||
|
|
Loading…
Reference in a new issue