InvocationReturnMode Enum  
	- java.lang. Object 
- java.lang. Enum 
- com.microsoft. semantickernel. orchestration. InvocationReturnMode 
 
- com.
 
- java.
public enum InvocationReturnMode
 extends java.lang.Enum<InvocationReturnMode>
Represents the mode in which a function invocation should return its results.
Fields
| FULL_HISTORY | Function invocations that build upon a history of previous invocations, such as Chat Completions, will return the full history of messages. | 
| LAST_MESSAGE_ONLY | Function invocations that build upon a history of previous invocations, such as Chat Completions, will return only the last message generated by the given invocation. | 
| NEW_MESSAGES_ONLY | Function invocations that build upon a history of previous invocations, such as Chat Completions, will return only new messages generated by the given invocation. | 
Methods inherited from java.lang.Enum
Methods inherited from java.lang.Object
Methods
valueOf(String name)
public static InvocationReturnMode valueOf(String name)
Parameters
- name
- java.lang.String