public String getResponse()

in java-library/src/main/java/com/microsoft/azure/functions/openai/annotation/search/SemanticSearchContext.java [33:39]


    public String getResponse() {
        if (this.chat != null && this.chat.getChoices() != null && !this.chat.getChoices().isEmpty()) {
            return this.chat.getChoices().get(this.chat.getChoices().size() - 1).getMessage().getContent();
        } else {
            return "";
        }
    }