Merge pull request #157 from phishontop/main

Update __init__.py
This commit is contained in:
t.me/xtekky 2023-04-26 17:52:47 +01:00 committed by GitHub
commit f028d1d6a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class PhindResponse:
return f'''<__main__.APIResponse.Completion.Choices(\n text = {self.text.encode()},\n index = {self.index},\n logprobs = {self.logprobs},\n finish_reason = {self.finish_reason})object at 0x1337>'''
def __init__(self, choices: dict) -> None:
self.choices = [self.Choices(choice) for choice in choices]
self.choices = list(map(self.Choices, choices))
class Usage:
def __init__(self, usage_dict: dict) -> None: