From a485cfb180094f14b3fe27ea218d2890033768a3 Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Thu, 20 Apr 2023 15:34:19 +0100 Subject: unfinished api's (help is welcome) --- experimental/bard/typings.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 experimental/bard/typings.py (limited to 'experimental/bard/typings.py') diff --git a/experimental/bard/typings.py b/experimental/bard/typings.py deleted file mode 100644 index 69239762..00000000 --- a/experimental/bard/typings.py +++ /dev/null @@ -1,15 +0,0 @@ -class BardResponse: - def __init__(self, json_dict): - self.json = json_dict - - self.content = json_dict.get('content') - self.conversation_id = json_dict.get('conversation_id') - self.response_id = json_dict.get('response_id') - self.factuality_queries = json_dict.get('factualityQueries', []) - self.text_query = json_dict.get('textQuery', []) - self.choices = [self.BardChoice(choice) for choice in json_dict.get('choices', [])] - - class BardChoice: - def __init__(self, choice_dict): - self.id = choice_dict.get('id') - self.content = choice_dict.get('content')[0] -- cgit v1.2.3