Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
canxin121 committed Jul 20, 2023
1 parent 118b76e commit 10f0806
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Bard.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,14 +317,14 @@ async def ask(self, message: str) -> dict:
sys.exit(0)
parser = argparse.ArgumentParser()
parser.add_argument(
"--__Secure_1PSID --__Secure_1PSIDTS",
"--session --session_ts",
help="__Secure-1PSID cookie and __Secure_1PSIDTS cookie.",
type=str,
required=True,
)
args = parser.parse_args()

chatbot = Chatbot(args.__Secure_1PSID, args.__Secure_1PSIDTS)
chatbot = Chatbot(args.session, args.session_ts)
prompt_session = __create_session()
completions = __create_completer(["!exit", "!reset"])

Expand Down

0 comments on commit 10f0806

Please sign in to comment.