- Clean and reinstall pre-commit hooks to fix corrupted cache - Update isort to v6.0.1 to resolve deprecation warnings - Fix pytest PT012 error by separating pytest.raises from context managers - Fix pytest PT011 errors by using GraphInterrupt instead of generic Exception - Fix formatting and trailing whitespace issues automatically applied by hooks
30 lines
1.4 KiB
JSON
30 lines
1.4 KiB
JSON
{
|
|
"dependencies": ["."],
|
|
"graphs": {
|
|
"agent": "./src/biz_bud/graphs/graph.py:graph_factory_async",
|
|
"buddy_agent": "./src/biz_bud/agents/buddy_agent.py:buddy_agent_factory_async",
|
|
"planner": "./src/biz_bud/graphs/planner.py:planner_graph_factory_async",
|
|
"research": "./src/biz_bud/graphs/research/graph.py:research_graph_factory_async",
|
|
"catalog": "./src/biz_bud/graphs/catalog/graph.py:catalog_factory_async",
|
|
"paperless": "./src/biz_bud/graphs/paperless/graph.py:paperless_graph_factory_async",
|
|
"receipt_processing": "./src/biz_bud/graphs/paperless/graph.py:create_receipt_processing_graph",
|
|
"paperless_agent": "./src/biz_bud/graphs/paperless/agent.py:create_paperless_agent",
|
|
"url_to_r2r": "./src/biz_bud/graphs/rag/graph.py:url_to_r2r_graph_factory_async",
|
|
"error_handling": "./src/biz_bud/graphs/error_handling.py:error_handling_graph_factory_async",
|
|
"analysis": "./src/biz_bud/graphs/analysis/graph.py:analysis_graph_factory_async",
|
|
"scraping": "./src/biz_bud/graphs/scraping/graph.py:scraping_graph_factory_async"
|
|
},
|
|
"env": ".env",
|
|
"http": {
|
|
"app": "./src/biz_bud/webapp.py:app",
|
|
"host": "0.0.0.0",
|
|
"port": 2024,
|
|
"cors": {
|
|
"allow_origins": ["*"],
|
|
"allow_credentials": true,
|
|
"allow_methods": ["GET", "POST", "PUT", "DELETE", "OPTIONS"],
|
|
"allow_headers": ["*"]
|
|
}
|
|
}
|
|
}
|