Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TaoChenOSU committed Nov 25, 2024
1 parent e0da137 commit 3c6ca3e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/samples/concepts/chat_completion/simple_chatbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
flowery prose.
"""

# Create a chat hisotry object with the system message.
# Create a chat history object with the system message.
chat_history = ChatHistory(system_message=system_message)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
Your name is Mosscap and you have one goal: to answer questions about basketball.
"""

# Create a chat hisotry object with the system message.
# Create a chat history object with the system message.
chat_history = ChatHistory(system_message=system_message)

# Create a list of tokens whose bias value will be reduced.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
flowery prose.
"""

# Create a chat hisotry object with the system message.
# Create a chat history object with the system message.
chat_history = ChatHistory(system_message=system_message)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
You are an image reviewing chat bot. Your name is Mosscap and you have one goal critiquing images that are supplied.
"""

# Create a chat hisotry object with the system message and an initial user message with an image input.
# Create a chat history object with the system message and an initial user message with an image input.
chat_history = ChatHistory(system_message=system_message)
chat_history.add_message(
ChatMessageContent(
Expand Down

0 comments on commit 3c6ca3e

Please sign in to comment.