-
-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added info on Restaurant, Weather, and Google Search #93
base: master
Are you sure you want to change the base?
Conversation
So I tried my best to add the basic info for the Restaurant, Weather, and Google Search aspects of the Virtual Assistant. I tried my best to keep with how other users added info, but let me know if you'd prefer it to be done differently
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please try to check for grammatical mistakes also (if any)
@@ -126,6 +126,8 @@ gcc main.c src/init_config.c $(pkg-config --libs --cflags libcurl) -lssl -lcrypt | |||
# Restaurant | |||
Virtual Assistant can find restaurants in an area. | |||
|
|||
Enter an area for the Virtual Assistant to search (EX: New York). Virtual Assistant will then search for several restaurants and display them for the user; showing name, address, rating, pricing, and if the restaurant is currently open. At the moment the assistant can only show general information and cannot provide ways to contact the restaurant. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enter an area for the Virtual Assistant to search (EX: New York). Virtual Assistant will then search for several restaurants and display them for the user; showing name, address, rating, pricing, and if the restaurant is currently open. At the moment the assistant can only show general information and cannot provide ways to contact the restaurant. | |
Enter a location for the Virtual Assistant to search (Eg: New York). Virtual Assistant will then search for several restaurants in that area and display them for the user. It will display name, address, rating, pricing, and current status of the restaurant (open/closed). |
@@ -141,6 +143,8 @@ Or | |||
``` | |||
$ sudo yum install curl | |||
``` | |||
Ask the Virtual Assistant to tell you the weather forecast. After entering a location for the assistant to search for it will display the current weather, as well as a chart showing weather predictions for the next several days. Each day shown will give a general prediction for the morning, noon, evening, and night forecasts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ask the Virtual Assistant to tell you the weather forecast. After entering a location for the assistant to search for it will display the current weather, as well as a chart showing weather predictions for the next several days. Each day shown will give a general prediction for the morning, noon, evening, and night forecasts. | |
Ask the Virtual Assistant to give you the weather forecast. After entering a location for the assistant to search for, it will display the current weather, as well as a tabular result showing weather predictions for the next several days. Each day shown here will give a general prediction for the morning, noon, evening, and night forecasts. |
@@ -180,6 +184,7 @@ Artificial Intelligence is an example here, you can use anything you want to sea | |||
# Google Search | |||
|
|||
Virtual assistant can search anything on Google. | |||
Ask the Virtual Assistant to search on Google. The assistant will ask the user what to search for, after entering the search criteria the assistant will open a web browser and search for what the user has inputted. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ask the Virtual Assistant to search on Google. The assistant will ask the user what to search for, after entering the search criteria the assistant will open a web browser and search for what the user has inputted. | |
Ask the Virtual Assistant to search on Google. The assistant will ask the user what to search for, after entering the search criteria the assistant will open a web browser and search for what the user has given as an input. |
So I tried my best to add the basic info for the Restaurant, Weather, and Google Search aspects of the Virtual Assistant. I tried my best to keep with how other users added info, but let me know if you'd prefer it to be done differently