Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Bam4d committed Dec 13, 2023
1 parent cf7b0e3 commit e35d2fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/chatbot_with_streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

# Simple chatbot example -- run with -h argument to see options.

import os
import sys
import argparse
import logging
import os
import sys

from mistralai.client import MistralClient
from mistralai.models.chat_completion import ChatMessage
Expand All @@ -17,9 +17,9 @@
]
DEFAULT_MODEL = "mistral-small"

LOG_FORMAT = '%(asctime)s - %(levelname)s - %(message)s'
LOG_FORMAT = "%(asctime)s - %(levelname)s - %(message)s"

logger = logging.getLogger('chatbot')
logger = logging.getLogger("chatbot")


class ChatBot:
Expand Down

0 comments on commit e35d2fe

Please sign in to comment.