Skip to content

Commit d17e038

Browse files
Python: doc: fix the import (microsoft#2691)
### Motivation and Context <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> typo in docs ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> Just fix the error import ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [x] The code builds clean without any errors or warnings - [x] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [x] All unit tests pass, and I have added new tests where possible - [x] I didn't break anyone 😄 --------- Co-authored-by: Abby Harrison <[email protected]>
1 parent 2e7af81 commit d17e038

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ AZURE_OPENAI_API_KEY=""
2626

2727
```python
2828
import semantic_kernel as sk
29-
from semantic_kernel.connectors.ai.open_ai import OpenAITextCompletion, AzureTextCompletion
29+
from semantic_kernel.connectors.ai.open_ai import OpenAIChatCompletion, AzureChatCompletion
3030

3131
kernel = sk.Kernel()
3232

@@ -36,7 +36,7 @@ kernel.add_chat_service("chat-gpt", OpenAIChatCompletion("gpt-3.5-turbo", api_ke
3636

3737
# Alternative using Azure:
3838
# deployment, api_key, endpoint = sk.azure_openai_settings_from_dot_env()
39-
# kernel.add_text_completion_service("dv", AzureTextCompletion(deployment, endpoint, api_key))
39+
# kernel.add_chat_service("dv", AzureChatCompletion(deployment, endpoint, api_key))
4040

4141
# Wrap your prompt in a function
4242
prompt = kernel.create_semantic_function("""

0 commit comments

Comments
 (0)