IntelligenzaArtificiale / Free-Auto-GPT

Free Auto GPT with NO paids API is a repository that offers a simple version of Auto GPT, an autonomous AI agent capable of performing tasks independently. Unlike other versions, our implementation does not rely on any paid OpenAI API, making it accessible to anyone.
MIT License
2.47k stars 383 forks source link

Typo in BingChatAPI.py #82

Closed infinit-X closed 1 year ago

infinit-X commented 1 year ago
def select_conversation(self, conversation_style: str):
    if conversation_style == "precise":
        self.conversation_style_on = ConversationStyle.precise
    elif conversation_style == "creative":
        self.conversation_style_on = ConversationStyle.creative
    elif conversation_style == "**balaced**":
        self.conversation_style_on = ConversationStyle.balanced

and this will result in ""conversation_style must be precise, creative or balanced"

FlamingFury00 commented 1 year ago

Yeah I saw that too, i was going to fix it but i forgot 😅

IntelligenzaArtificiale commented 1 year ago

fixed