-
Notifications
You must be signed in to change notification settings - Fork 986
/
Copy patherror_msg.py
55 lines (44 loc) · 1.35 KB
/
error_msg.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
BASE_ERROR = "\nPlease ask me something else, like:"
QUERY_ERROR = "I couldn't find any {} matching your query." + BASE_ERROR
CONVERT_ERROR = "I couldn't convert between those {}." + BASE_ERROR
LOCATION_ERROR = "I couldn't get the {} at the location you specified." + BASE_ERROR
EXAMPLE_ANIME = """
- Death Note anime,
- Dragon ball super anime status,
- What is the anime rating of One Punch Man?"""
EXAMPLE_BOOKS = """
- book timeline
- harry potter book plot
- little women book rating"""
EXAMPLE_CONVERSIONS = """
- HKD to USD
- USD to EUR rate
- how much is 100 USD to INR"""
EXAMPLE_DEFINITIONS = """
- define comfort
- cloud definition
- what does an accolade mean?"""
EXAMPLE_LYRICS = """
- paradise lyrics
- lyrics of the song hall of fame
- What are the lyrics to see you again?"""
EXAMPLE_MOVIES = """
- batman movie
- iron man 2 movie plot
- What is the rating of happiness movie?"""
EXAMPLE_TIME = """
- time in new york
- india time
- time at paris"""
EXAMPLE_VIDEOS = """
- sia videos
- videos by eminem
- video coldplay"""
EXAMPLE_WEATHER = """
- tell me the weather in London
- weather Delhi
- What's the weather in Texas?"""
EXAMPLE_WIKI = """
- wikipedia barack
- html wiki
- who is sachin tendulkar"""