A full stack system for risk analysis of companies across several years using Langchain framework. It utilize Streamlit for the frontend, and FastAPI for backend Swagger. This project is develop to help enterprise calculate their internal organization risks.
- Clone the repository:
git clone https://github.com/your-username/risk-analysis-with-langchain.git cd risk-analysis-with-langchain - Create a virtual Environment and activate it
python -m venv .venv
.venv\Scripts\activate # On Windows
source .venv/bin/activate # On macOS/Linux- Install Dependencies
pip install -r requirements.txt- Create a .env file and add your API keys
echo "OPENAI_API_KEY=your-api-key" > .env- Run the application
docker-compose up --build- Stopping the container
docker-compose stop