conda create -n Agents_Env python=3.11.11 -yconda activate Agents_Envcd path/to/your/project # Replace with actual path containing pyproject.tomlpip install -e .langgraph devstreamlit run src/react_agent/financial_analyst_app.py| Package | Version | Purpose |
|---|---|---|
| langgraph | ≥0.2.0 | Workflow orchestration |
| openai | ≥1.30.1 | LLM integration & file search |
| streamlit | ≥1.33.0 | Web interface |
Full list in pyproject.toml
# .env
OPENAI_API_KEY=your-api-key-hereNote: Editable mode (
-e .) links live code changes without reinstallation
Changes made:
1. Added dedicated "Development Setup" section with Conda instructions
2. Separated production vs development launch commands
3. Added langgraph to dependencies table
4. Included note about editable installations
5. Added reference to pyproject.toml
6. Updated Python version badge to 3.11.11
7. Added visual for development workflow
The original features and architecture sections remain unchanged but would appear after these setup instructions in a full README.
