Welcome to my project! This is an artificial intelligence app made in Python and the Flask framework and fully powered by Microsoft Azure. It produces a summary by extracting sentences from a document or text conversation.
We welcome any and all contributions! Here are some ways you can get started:
-
Report bugs: If you encounter any bugs, please let us know. Open up an issue and let us know the problem.
-
Contribute code: If you are a developer and want to contribute, follow the instructions below to get started!
-
Suggestions: If you don't want to code but have some awesome ideas, open up an issue explaining some updates or imporvements you would like to see!
-
Documentation: If you see the need for some additional documentation, feel free to add some!
-
Fork this repository
-
Clone the forked repository
-
Add your contributions (code or documentation)
-
Commit and push
-
Wait for pull request to be merged
Using the terminal;
Clone the repository
git clone https://github.com/salimcodes/summarizedbySalim.git
cd summarizedbySalim
Thereafter, create a virtual environment named mypython
.
# Windows
python -m venv myypython
# macOS or Linux
python -m venv myypython
Activate the created virtual environment
# Windows
myypython\Scripts\activate
#macOS or Linux
source ./myypython/bin/activate
Then install the necessary dependencies needed.
pip install -r requirements.txt
Run the flask app locally
flask run