-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfiguration.php
More file actions
25 lines (20 loc) · 830 Bytes
/
Configuration.php
File metadata and controls
25 lines (20 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
class Config {
public array $fallback_responses = [
"I'm sorry, I'm not sure how to respond to that.",
"I'm not sure what you're asking. Could you please rephrase your question?",
"I'm sorry, I don't have enough information to give a specific response to your question.",
"I'm not sure I understand what you're asking. Could you please provide more context or give more details?",
"I apologize, but it seems that I don't have a specific response for that. Is there anything else I can help with?",
];
public string $type = 'website'; //website or terminal
public function getFallbackResponses(): array
{
return $this->fallback_responses;
}
public function getType(): string
{
return $this->type;
}
}
?>