How to use Google bard for free ( with. Python )
1. Install bard api pip install bardapi 2. bard connection We will use cookies instead of api keys. 2-1. Access from Google Board. https://bard.google.com/?hl=en 2-2. developer mode ( Press F12 ) Copy the value of __Secure-1PSID. 3. Write a program in python Enter _Secure-1PSID in token import bardapi token = '__Secure-1PSID' INPUT_DATA = "hello? " bard_answer = bardapi.core.Bard(token).get_answ..
2023.06.04