This is a financial tool used for developers that are keen in reading into financial reports when investing, using Ollama Llama 3's open source LLM, it summarizes and highlights key details of the report (PE ratio, Earnings, any key facts etc.) Using a React.js frontend to retreive user files, and a python FLASK backend in order to parse the file, extract the text and prompt the LLM I was able to create the end to end functionality for the application and retreive some key insights into a companies quarterly report.


The FLASK backend is responsible for reading the pdf document uploaded, parsing the file and extracting the text in order to use as a prompt for the LLM
The prompt it given to the LLM and sent back to the front end in order to display the result:
- Including a prompt input so users can create custom prompts for the tool
- Including more styling for the output test and application overall
- Improving the speed of the data retreival from LLM possibly
- Including a scraper pre-processor to grab key words from the document using python script to be easier for the LLM