Lines Matching refs:annotated_conversation
1101 Conversation annotated_conversation = conversation; in AnnotateConversation() local
1102 for (int i = 0, message_index = annotated_conversation.messages.size() - 1; in AnnotateConversation()
1105 &annotated_conversation.messages[message_index]; in AnnotateConversation()
1112 return annotated_conversation; in AnnotateConversation()
1308 const Conversation annotated_conversation = in GatherActionsSuggestions() local
1312 annotated_conversation, model_->max_conversation_history_length()); in GatherActionsSuggestions()
1319 SuggestActionsFromAnnotations(annotated_conversation, &response->actions); in GatherActionsSuggestions()
1322 !grammar_actions_->SuggestActions(annotated_conversation, in GatherActionsSuggestions()
1330 for (int i = annotated_conversation.messages.size() - num_messages; in GatherActionsSuggestions()
1331 i < annotated_conversation.messages.size(); i++) { in GatherActionsSuggestions()
1332 input_text_length += annotated_conversation.messages[i].text.length(); in GatherActionsSuggestions()
1335 annotated_conversation.messages[i].detected_text_language_tags, in GatherActionsSuggestions()
1365 if (regex_actions_->IsLowConfidenceInput(annotated_conversation, in GatherActionsSuggestions()
1373 if (!SuggestActionsFromModel(annotated_conversation, num_messages, options, in GatherActionsSuggestions()
1389 annotated_conversation, options, &response->actions); in GatherActionsSuggestions()
1398 annotated_conversation, model_executor_.get(), interpreter.get(), in GatherActionsSuggestions()
1405 if (!regex_actions_->SuggestActions(annotated_conversation, in GatherActionsSuggestions()