Home
last modified time | relevance | path

Searched refs:question (Results 1 – 25 of 123) sorted by relevance

12345

/plugin/aichat/
H A Dhelper.php142 * Ask a question with a chat history
144 * @param string $question
146 * @return array ['question' => $question, 'answer' => $answer, 'sources' => $sources]
149 public function askChatQuestion($question, $history = [])
152 $standaloneQuestion = $this->rephraseChatQuestion($question, $history);
155 $standaloneQuestion = $question;
162 * Ask a single standalone question
164 * @param string $question
165 * @param array $previous [user, ai] of the previous question
88 askChatQuestion($question, $history = []) global() argument
105 askQuestion($question) global() argument
145 rephraseChatQuestion($question, $history) global() argument
[all...]
H A Daction.php43 $question = $INPUT->post->str('question');
49 'question' => $question,
57 $result = $helper->askChatQuestion($question, $history);
67 'question' => $result['question'],
74 $question,
76 'interpretation' => $result['question'],
88 'question'
[all...]
/plugin/quizlib/scripts/
H A Dquizlib.js101 var question = this.questions[i];
105 this.clearHighlights(question);
122 unansweredQs.push(question);
150 Quiz.prototype.clearHighlights = function(question) { argument
152 var questionWarnings = question.getElementsByClassName(this.Classes.QUESTION_WARNING);
158 …var highlightedQuestions = [question.getElementsByClassName(this.Classes.CORRECT), question.getEle…
169 var tempElements = question.getElementsByClassName(this.Classes.TEMP);
201 var question;
203 question = this.questions[i];
205question.getElementsByClassName(this.Classes.QUESTION_TITLE)[0].classList.add(this.Classes.CORRECT…
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowV2FaqAnswer.php41 public $question; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2FaqAnswer
106 public function setQuestion($question) argument
108 $this->question = $question;
115 return $this->question;
H A DGoogleCloudDialogflowV2beta1FaqAnswer.php41 public $question; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1FaqAnswer
106 public function setQuestion($question) argument
108 $this->question = $question;
115 return $this->question;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/
H A DGoogleCloudContactcenterinsightsV1FaqAnswerData.php41 public $question; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1FaqAnswerData
106 public function setQuestion($question) argument
108 $this->question = $question;
115 return $this->question;
/plugin/quizlib/
H A DREADME.md15 There a three kinds of question formats you can use:
32 …<question title="1. What is the answer to life, the universe and everything?" type="text"></questi…
33 …<question title="2. Your enemy's father..." type="radio">is a hamster|smells of elderberries</ques…
34question title="3. Which factors will contribute to the end of humanity as we know it?" type="chec…
47 <div class="quizlib-card quizlib-question">
49 <div class="quizlib-question-answers">
54 <div class="quizlib-card quizlib-question">
55 <div class="quizlib-question-title">2. Your enemy's father...</div>
56 <div class="quizlib-question-answers">
64 <div class="quizlib-card quizlib-question">
[all …]
H A Dstyle.css6 .quizlib-question {
10 .quizlib-question-title {}
12 .quizlib-question-answers ul {
16 .quizlib-question-warning {
H A Dsyntax.php85 foreach ($xml->children() as $question){
87 foreach ($question->attributes() as $attribute=>$attributevalue){
99 $answers = explode('|', $question);
109 $answers = explode('|', $question);
H A Dscript.js34 function handleAnswers(question, no, correct) { argument
36 var answers = question.getElementsByTagName('input');
/plugin/aichat/lang/en/
H A Dprompt_rephrase.txt1 Given the following conversation and a follow up question, rephrase the follow up question to be a standalone question, in its original language.
8 Standalone question:
H A Dprompt_noanswer.txt1 Given the user's question, tell them that you can't answer it because you couldn't find any matching wiki pages, which is likely because the user has insufficient permissions to access them or the question was off-topic.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/
H A DQuestionItem.php44 public function setQuestion(Question $question) argument
46 $this->question = $question;
53 return $this->question;
/plugin/qna/syntax/
H A Dblock.php57 $question = trim(substr($match, 4));
59 if ($question != '') {
60 $identifier = $this->questionToIdentifier($question);
62 $data = array('open_question', $question, $identifier);
/plugin/multipoll/
H A Dsyntax.php188 foreach($questions as $question) {
189 …ultipoll_question" id="poll_question_'.$q.'">'.$renderer->_xmlEntities($question['q']).'</div>'."\…
191 foreach($question['a'] as $a) {
220 foreach($questions as $question) {
221 …oll_question" id="multipoll_question_'.$q.'">'.$renderer->_xmlEntities($question['q']).'</div>'."\…
222 foreach($question['a'] as $a) {
224 if($question['m']) {
/plugin/vote/
H A Dsyntax.php45 $question = htmlspecialchars( $regx_result[1] );
59 return array( $title, $param, $question, $options );
71 list( $title, $param, $question, $options ) = $data;
78 if ( $question ) {
79 $output .= '<div>'.$question.'</div>';
/plugin/qna/style/
H A Dsymbols.less11 span.qna-toc-question * {
27 div.qna-question {
29 background-image: url(images/question-symbols.png);
H A Dmemes.less11 span.qna-toc-question * {
28 div.qna-question {
29 background-image: url(images/question-memes.png);
H A Ddefault.less6 div.qna-question {
7 background-image: url(images/question.png);
/plugin/bootswrapper/exe/help/
H A Dcallout.txt5 <callout type="question" icon="true">
101 <callout type="question" icon="true">
103 This is a question callout (alias of ''important'').
112 <callout type="question" icon="true"> [...] </callout>
146 …' ''success'' ''info'' ''warning'' ''danger'' (''question'' ''tip'') | Type of callout \\ \\ ''qu…
/plugin/quiz/
H A Dscript.js1 function plgQuiz_send(quiz_ID, question){ argument
25 plgQuiz_myParam += ajax.encVar("next_question", question);
H A Dstyle.css5 div.quiz-block div.quiz-question {
8 background-image: url(images/question.png);
H A Dclass_quiz.php294 function checkanswer($question, $answer_array = null) { argument
296 if ($this->parseQuiz() !== false && $question > 0) {
298 $a = $data['questions'][$question];
303 $your_answer = $_POST['answers'][$question];
311 $your_answer = $_POST['answers'][$question];
317 $your_answers = $_POST['answers'][$question];
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DCalendarTest.php75 $question = array(
79 $result = $this->calendar->getProperties($question);
81 foreach($question as $q) $this->assertArrayHasKey($q,$result);
/plugin/bootnote/
H A Dstyle.css79 .s-question-sign {
83 div.s-question-sign>div {
172 .n-question-sign {

12345