File size: 189 Bytes
4a6aa55
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from bardapi import Bard



def bard_predict(input_text, bard_api_key):

    bard = Bard(api_key=bard_api_key)
    response = bard.get_answer(input_text)
    
    return response['content']