|
| 1 | +# 📌 Math Problem Solver |
| 2 | + |
| 3 | +## 🚀 Overview |
| 4 | +This project is a Math Problem Solver and Data Search Assistant built using Streamlit and LangChain. It allows users to input mathematical queries and retrieve answers using advanced LLM-based reasoning. The project also integrates Wikipedia search to provide contextual information for math-related topics. |
| 5 | + |
| 6 | +## 🛠 Features |
| 7 | +✅ Solve complex mathematical problems |
| 8 | +✅ Retrieve factual data from Wikipedia |
| 9 | +✅ Provide step-by-step logical reasoning for solutions |
| 10 | +✅ User-friendly interface using Streamlit |
| 11 | +✅ Store query history for future reference |
| 12 | +✅ Support for multiple LLM providers |
| 13 | + |
| 14 | +## 🏗 Tech Stack |
| 15 | +Programming Language: Python |
| 16 | +Frameworks & Libraries: LangChain, Streamlit, WikipediaAPIWrapper |
| 17 | +LLM Provider: Groq (Gemma2-9b-It) |
| 18 | +Tools: Docker, GitHub Actions |
| 19 | + |
| 20 | +## Highlights |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | +## 🎬 Installation & Usage |
| 26 | +Clone the repository and install dependencies: |
| 27 | +``` |
| 28 | +git clone https://github.com/yourusername/math-problem-solver.git |
| 29 | +cd math-problem-solver |
| 30 | +pip install -r requirements.txt |
| 31 | +``` |
| 32 | + |
| 33 | +### Run the application: |
| 34 | +``` streamlit run app.py ``` |
| 35 | + |
| 36 | +## 📂 Folder Structure |
| 37 | +math_assistant/ |
| 38 | +│── 1-Langchain/ |
| 39 | +│ ├── 1.1_mathsolver/ |
| 40 | +│ │ ├── app.py # Main application script |
| 41 | +│── myvenv/ # Conda virtual environment (outside project structure) |
| 42 | +│── requirements.txt # Dependencies |
| 43 | +│── README.md # Project documentation |
| 44 | +│── .env # Environment variables |
| 45 | +│── static/ # Images and screenshots |
| 46 | +└── .github/workflows/ # CI/CD pipelines |
0 commit comments