Skip to content

Commit 9cb4e51

Browse files
committed
review comment
1 parent 25b08b9 commit 9cb4e51

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

articles/azure-app-configuration/quickstart-chat-completion-python.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,9 @@ The full sample source code is available in the [Azure App Configuration GitHub
135135
136136
# Get AI response and add it to chat conversation
137137
response = get_ai_response(openai_client, config, chat_conversation)
138-
print(f"AI: {response}")
138+
print(f"AI: {response}\n")
139139
chat_conversation.append({"role": "assistant", "content": response})
140140
141-
print()
142-
143141
if __name__ == "__main__":
144142
main()
145143
```
@@ -224,11 +222,9 @@ The full sample source code is available in the [Azure App Configuration GitHub
224222
225223
# Get AI response and add it to chat conversation
226224
response = get_ai_response(openai_client, config, chat_conversation)
227-
print(f"AI: {response}")
225+
print(f"AI: {response}\n")
228226
chat_conversation.append({"role": "assistant", "content": response})
229227
230-
print()
231-
232228
233229
if __name__ == "__main__":
234230
main()

0 commit comments

Comments
 (0)