How to use Google bard for free ( with. Python )
2023. 6. 4. 19:16ㆍit
반응형
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.
728x90
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_answer(INPUT_DATA)
print( bard_answer['content'] )
3-1. result
user : hello?
bard_answer : Hello! How can I help you today?
4. Reference
Referenced pypi source : https://pypi.org/project/googlebardapi/
반응형
'it' 카테고리의 다른 글
Windows에서 Vue.js 설치하기 ( Vue3 버전 ) (0) | 2023.06.12 |
---|---|
MongoDB Atlas search Index Knn 사용방법 ( 비슷한 문서 찾기 ) (0) | 2023.06.08 |
chatGPT를 활용한 법률 조회 프로그램 제작 결과 (0) | 2023.06.02 |
chroma ( 크로마 ) 활용한 자연어 유사도 분석 (No Embedding ) (0) | 2023.05.30 |
티스토리 구글 어널리티스트 등록 방법 자세히 알아보자 ( 사진 첨부 ) (0) | 2023.05.29 |