Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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).


![restaurants](https://user-images.githubusercontent.com/20038775/33029445-9b05b482-ce3e-11e7-8ed4-5782fe468530.png)


Expand All @@ -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.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.


![weather](https://user-images.githubusercontent.com/20038775/37968392-9af5446a-31eb-11e8-8008-14b5e935571d.png)

# Media
Expand Down Expand Up @@ -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.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.


![gsearch](https://user-images.githubusercontent.com/20038775/37968140-fa07a8d6-31ea-11e8-9ad2-97fe5527bc25.png)

Expand Down