- Install uv
 - Run 
make setup - Set your h2oGPTe API key (see h2oGPTe Setup below for assistance)
 - Set your LANGSMITH API key (see LangSmith Setup below for assistance) (optional)
 - Run the app 
make run - Input in app 
Borrower Id: TechManufacture IncandSector: Advanced Manufacturing - Input 
trueorfalseto accept/reject at HITL stage 
This application requires an h2oGPTe API key to function. Follow these steps to configure it:
- Generate or retrieve your API key from h2oGPTe
 
# Edit the .env file and add your API key
H2OGPTE_API_KEY=your_actual_api_key_hereThe demo defaults to h2oGPTe freemium version. If you wish to change environments, update the .env
# Edit the .env file to change h2oGPTe instance
H2OGPTE_URL=your_h2ogpte_instanceLangSmith provides powerful tracing, debugging, and monitoring capabilities for your LangGraph workflows. While optional, it's highly recommended for development and production use.
- Sign up for a free account at smith.langchain.com
 - Navigate to your account settings
 - Generate an API key
 
Add your LangSmith API key to your .env file:
# .env
LANGSMITH_API_KEY=lsv2_pt_...- Tracing: Visualize the execution flow of your workflows
 - Debugging: Step through each node and inspect state changes
 - Monitoring: Track performance metrics and identify bottlenecks
 - Collaboration: Share traces with team members for debugging
 - Analytics: Analyze usage patterns and optimize your workflows
 
Ensure uv is installed to inherit all other tools.
# Install dependencies
uv sync --dev