-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Closed
Labels
.NETIssue or Pull requests regarding .NET codeIssue or Pull requests regarding .NET codepythonPull requests for the Python Semantic KernelPull requests for the Python Semantic Kernel
Description
Instead of having to always get the first message like so...
result = (await chat_completion.get_chat_message_contents(
chat_history=history,
settings=execution_settings,
kernel=kernel,
arguments=KernelArguments(),
))[0]I should be able to just do the following (like in .NET)
result = await chat_completion.get_chat_message_content(
chat_history=history,
settings=execution_settings,
kernel=kernel,
arguments=KernelArguments(),
)Metadata
Metadata
Assignees
Labels
.NETIssue or Pull requests regarding .NET codeIssue or Pull requests regarding .NET codepythonPull requests for the Python Semantic KernelPull requests for the Python Semantic Kernel