Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
fix: typoe multi cookies chat bard
Browse files Browse the repository at this point in the history
  • Loading branch information
dsdanielpark committed Jan 19, 2024
1 parent 5424f0b commit 31b407f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bardapi/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from bardapi import Bard
from colorama import Fore, Back, Style
from bardapi.constants import SEPARATOR_LINE, SESSION_HEADERS
from bardapi import BardCookis
from bardapi import BardCookies

class ChatBard(Bard):
"""
Expand Down Expand Up @@ -206,7 +206,7 @@ def _add_to_chat_history(self, user_input: str, chatbot_response: str) -> None:
self.chat_history.append({"User": user_input, "Chatbot": chatbot_response})


class ChatBardCookise(BardCookis):
class ChatBardCookise(BardCookies):
"""
A class representing a chatbot powered by the Bard API.
Expand Down

0 comments on commit 31b407f

Please sign in to comment.