blob: 6f48bb0a7f90199b15a0414139b40a250727d627 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.nlpcraft.model;
import org.apache.nlpcraft.model.tools.test.*;
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
/**
* Annotation to define one or more samples of the user input that should match a corresponding intent. This
* annotation can only be used together with {@link NCIntent} or {@link NCIntentRef} annotations on the callback
* methods. Method can have multiple annotations of this type and each annotation can define multiple input
* examples.
* <p>
* Note that the samples provided by this annotation not only serve the documentation purpose but are also
* used by {@link NCTestAutoModelValidator} class from built-in test framework for auto-validation between
* data models and intents.
* <p>
* Here's an example of using this annotation (from <a target=_new href="https://nlpcraft.apache.org/examples/light_switch.html">LightSwitch</a> example):
* <pre class="brush: java, highlight: [2]">
* {@literal @}NCIntent("intent=act term(act)={groups {@literal @}{@literal @} 'act'} term(loc)={trim(id) == 'ls:loc'}*")
* {@literal @}NCIntentSample(Array(
* "Turn the lights off in the entire house.",
* "Switch on the illumination in the master bedroom closet.",
* "Get the lights on.",
* "Please, put the light out in the upstairs bedroom.",
* "Set the lights on in the entire house.",
* "Turn the lights off in the guest bedroom.",
* "Could you please switch off all the lights?",
* "Dial off illumination on the 2nd floor.",
* "Please, no lights!",
* "Kill off all the lights now!",
* "No lights in the bedroom, please."
* ))
* def onMatch(
* {@literal @}NCIntentTerm("act") actTok: NCToken,
* {@literal @}NCIntentTerm("loc") locToks: List[NCToken]
* ): NCResult = {
* ...
* }
* </pre>
* <p>
* Read full documentation in <a target=_ href="https://nlpcraft.apache.org/intent-matching.html">Intent Matching</a> section and review
* <a target=_ href="https://github.com/apache/incubator-nlpcraft/tree/master/nlpcraft/src/main/scala/org/apache/nlpcraft/examples/">examples</a>.
*
* @see NCIntent
* @see NCIntentRef
* @see NCIntentTerm
* @see NCIntentSkip
* @see NCIntentMatch
* @see NCModel#onMatchedIntent(NCIntentMatch)
* @see NCTestAutoModelValidator
*/
@Retention(value=RUNTIME)
@Target(value=METHOD)
@Repeatable(NCIntentSample.NCIntentSampleList.class)
public @interface NCIntentSample {
/**
* Gets a list of user input samples that should match corresponding intent. This annotation should be
* attached the intent callback method.
*
* @return Set of user input examples that should match corresponding intent.
*/
String[] value();
/**
* Grouping annotation required for when more than one {@link NCIntentSample} annotation is attached to the
* callback.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(value=METHOD)
@interface NCIntentSampleList {
/**
* Gets the list of all {@link NCIntentSample} annotations attached to the callback.
*
* @return List of all {@link NCIntentSample} annotations attached to the callback.
*/
NCIntentSample[] value();
}
}