├── .env.example ├── .gitignore ├── PROMPT.md ├── README.md ├── branding.json ├── log_config.yaml ├── logs └── .gitkeep ├── packages ├── cli │ ├── .database_agent │ │ └── session.md │ ├── .dbrheo.json │ ├── .gitignore │ ├── cli.py │ ├── config.yaml │ ├── pyproject.toml │ ├── setup_enhanced_layout.py │ └── src │ │ ├── dbrheo_cli │ │ ├── __init__.py │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ └── config.py │ │ ├── constants.py │ │ ├── dependencies_report.txt │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── event_handler.py │ │ │ ├── input_handler.py │ │ │ └── tool_handler.py │ │ ├── i18n.py │ │ ├── main.py │ │ ├── ui │ │ │ ├── __init__.py │ │ │ ├── ascii_art.py │ │ │ ├── branding_config.py │ │ │ ├── console.py │ │ │ ├── layout_manager.py │ │ │ ├── messages.py │ │ │ ├── simple_multiline_input.py │ │ │ ├── startup.py │ │ │ ├── streaming.py │ │ │ └── tools.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── api_key_checker.py │ │ └── tests │ │ └── __init__.py ├── core │ ├── pyproject.toml │ └── src │ │ └── dbrheo │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ └── __init__.cpython-313.pyc │ │ ├── adapters │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── base.cpython-313.pyc │ │ │ ├── connection_manager.cpython-313.pyc │ │ │ └── dialect_parser.cpython-313.pyc │ │ ├── adapter_factory.py │ │ ├── base.py │ │ ├── connection_manager.py │ │ ├── connection_string.py │ │ ├── dialect_parser.py │ │ ├── mysql_adapter.py │ │ ├── postgresql_adapter.py │ │ ├── sqlite_adapter.py │ │ └── transaction_manager.py │ │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── app.cpython-313.pyc │ │ │ └── dependencies.cpython-313.pyc │ │ ├── app.py │ │ ├── dependencies.py │ │ └── routes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── chat.cpython-313.pyc │ │ │ ├── database.cpython-313.pyc │ │ │ └── websocket.cpython-313.pyc │ │ │ ├── chat.py │ │ │ ├── database.py │ │ │ └── websocket.py │ │ ├── config │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── base.cpython-313.pyc │ │ │ └── test_config.cpython-313.pyc │ │ ├── base.py │ │ └── test_config.py │ │ ├── core │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── chat.cpython-313.pyc │ │ │ ├── client.cpython-313.pyc │ │ │ ├── compression.cpython-313.pyc │ │ │ ├── memory.cpython-313.pyc │ │ │ ├── next_speaker.cpython-313.pyc │ │ │ ├── prompts.cpython-313.pyc │ │ │ ├── scheduler.cpython-313.pyc │ │ │ ├── token_statistics.cpython-313.pyc │ │ │ └── turn.cpython-313.pyc │ │ ├── chat.py │ │ ├── client.py │ │ ├── compression.py │ │ ├── environment.py │ │ ├── memory.py │ │ ├── next_speaker.py │ │ ├── prompts.py │ │ ├── scheduler.py │ │ ├── token_statistics.py │ │ └── turn.py │ │ ├── services │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── gemini_service_new.cpython-313.pyc │ │ │ ├── llm_factory.cpython-313.pyc │ │ │ └── openai_service.cpython-313.pyc │ │ ├── claude_service.py │ │ ├── gemini_service.py │ │ ├── gemini_service_new.py │ │ ├── llm_factory.py │ │ └── openai_service.py │ │ ├── telemetry │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── logger.cpython-313.pyc │ │ │ ├── metrics.cpython-313.pyc │ │ │ └── tracer.cpython-313.pyc │ │ ├── logger.py │ │ ├── metrics.py │ │ └── tracer.py │ │ ├── tools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── base.cpython-313.pyc │ │ │ ├── code_execution_tool.cpython-313.pyc │ │ │ ├── directory_list_tool.cpython-313.pyc │ │ │ ├── file_read_tool.cpython-313.pyc │ │ │ ├── file_write_tool.cpython-313.pyc │ │ │ ├── glob_tool.cpython-313.pyc │ │ │ ├── grep_tool.cpython-313.pyc │ │ │ ├── registry.cpython-313.pyc │ │ │ ├── shell_tool.cpython-313.pyc │ │ │ ├── web_fetch_tool.cpython-313.pyc │ │ │ └── web_search_tool.cpython-313.pyc │ │ ├── base.py │ │ ├── code_execution_tool.py │ │ ├── directory_list_tool.py │ │ ├── file_read_tool.py │ │ ├── file_write_tool.py │ │ ├── glob_tool.py │ │ ├── grep_tool.py │ │ ├── mcp │ │ │ ├── __init__.py │ │ │ ├── mcp_adapter.py │ │ │ ├── mcp_client.py │ │ │ ├── mcp_client.py.bak │ │ │ ├── mcp_config.py │ │ │ ├── mcp_converter.py │ │ │ └── mcp_registry.py │ │ ├── registry.py │ │ ├── shell_tool.py │ │ ├── web_fetch_tool.py │ │ └── web_search_tool.py │ │ ├── types │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── core_types.cpython-313.pyc │ │ │ ├── file_types.cpython-313.pyc │ │ │ └── tool_types.cpython-313.pyc │ │ ├── core_types.py │ │ ├── file_types.py │ │ └── tool_types.py │ │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── debug_logger.cpython-313.pyc │ │ ├── encoding_utils.cpython-313.pyc │ │ ├── errors.cpython-313.pyc │ │ ├── function_response.cpython-313.pyc │ │ ├── parameter_sanitizer.cpython-313.pyc │ │ ├── retry.cpython-313.pyc │ │ └── retry_with_backoff.cpython-313.pyc │ │ ├── debug_logger.py │ │ ├── encoding_utils.py │ │ ├── errors.py │ │ ├── function_response.py │ │ ├── log_integration.py │ │ ├── parameter_sanitizer.py │ │ ├── realtime_logger.py │ │ ├── retry.py │ │ ├── retry_with_backoff.py │ │ └── type_converter.py └── web │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.tsx │ ├── components │ │ ├── chat │ │ │ └── ChatContainer.tsx │ │ └── database │ │ │ ├── QueryEditor.tsx │ │ │ └── ResultTable.tsx │ ├── main.tsx │ └── styles │ │ └── global.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── project_tools ├── README.md ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-313.pyc │ ├── _content_processor.cpython-313.pyc │ ├── _embedding_client.cpython-313.pyc │ ├── _rag_config.cpython-310.pyc │ ├── _rag_config.cpython-313.pyc │ ├── _reranker_client.cpython-310.pyc │ ├── _reranker_client.cpython-313.pyc │ ├── _vector_db_client.cpython-310.pyc │ ├── _vector_db_client.cpython-313.pyc │ ├── collection_info_tool.cpython-313.pyc │ ├── doc_index_tool.cpython-313.pyc │ ├── example_tool.cpython-313.pyc │ ├── rerank_tool.cpython-313.pyc │ └── vector_search_tool.cpython-313.pyc ├── _content_processor.py ├── _embedding_client.py ├── _rag_config.py ├── _reranker_client.py ├── _vector_db_client.py ├── collection_info_tool.py ├── doc_index_tool.py ├── example_tool.py ├── rerank_tool.py └── vector_search_tool.py ├── pyproject.toml ├── requirements.in ├── requirements.txt └── test_documents ├── README.md ├── computer_vision.md ├── deep_learning.md ├── machine_learning.md ├── natural_language_processing.md └── reinforcement_learning.md /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/.gitignore -------------------------------------------------------------------------------- /PROMPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/PROMPT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/README.md -------------------------------------------------------------------------------- /branding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/branding.json -------------------------------------------------------------------------------- /log_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/log_config.yaml -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/logs/.gitkeep -------------------------------------------------------------------------------- /packages/cli/.database_agent/session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/.database_agent/session.md -------------------------------------------------------------------------------- /packages/cli/.dbrheo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/.dbrheo.json -------------------------------------------------------------------------------- /packages/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/.gitignore -------------------------------------------------------------------------------- /packages/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/cli.py -------------------------------------------------------------------------------- /packages/cli/config.yaml: -------------------------------------------------------------------------------- 1 | model: gpt 2 | -------------------------------------------------------------------------------- /packages/cli/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/pyproject.toml -------------------------------------------------------------------------------- /packages/cli/setup_enhanced_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/setup_enhanced_layout.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/__init__.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/app/__init__.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/app/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/app/cli.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/app/config.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/constants.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/dependencies_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/dependencies_report.txt -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 事件处理器模块 3 | 4 | 处理来自DbRheo核心的各种事件,将其转换为UI操作。 5 | """ -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/handlers/event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/handlers/event_handler.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/handlers/input_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/handlers/input_handler.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/handlers/tool_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/handlers/tool_handler.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/i18n.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/main.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/__init__.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/ascii_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/ascii_art.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/branding_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/branding_config.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/console.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/layout_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/layout_manager.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/messages.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/simple_multiline_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/simple_multiline_input.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/startup.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/streaming.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/ui/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/ui/tools.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/utils/__init__.py -------------------------------------------------------------------------------- /packages/cli/src/dbrheo_cli/utils/api_key_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/cli/src/dbrheo_cli/utils/api_key_checker.py -------------------------------------------------------------------------------- /packages/cli/src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | CLI测试模块 3 | """ -------------------------------------------------------------------------------- /packages/core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/pyproject.toml -------------------------------------------------------------------------------- /packages/core/src/dbrheo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/__main__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/__pycache__/base.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/__pycache__/base.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/__pycache__/connection_manager.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/__pycache__/connection_manager.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/__pycache__/dialect_parser.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/__pycache__/dialect_parser.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/adapter_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/adapter_factory.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/base.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/connection_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/connection_manager.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/connection_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/connection_string.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/dialect_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/dialect_parser.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/mysql_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/mysql_adapter.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/postgresql_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/postgresql_adapter.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/sqlite_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/sqlite_adapter.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/adapters/transaction_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/adapters/transaction_manager.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/__pycache__/app.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/__pycache__/app.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/__pycache__/dependencies.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/__pycache__/dependencies.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/app.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/dependencies.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/routes/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/routes/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/routes/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/routes/__pycache__/chat.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/routes/__pycache__/chat.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/routes/__pycache__/database.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/routes/__pycache__/database.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/routes/__pycache__/websocket.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/routes/__pycache__/websocket.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/routes/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/routes/chat.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/routes/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/routes/database.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/api/routes/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/api/routes/websocket.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/config/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/config/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/config/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/config/__pycache__/base.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/config/__pycache__/base.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/config/__pycache__/test_config.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/config/__pycache__/test_config.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/config/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/config/base.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/config/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/config/test_config.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/chat.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/chat.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/client.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/client.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/compression.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/compression.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/memory.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/memory.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/next_speaker.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/next_speaker.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/prompts.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/prompts.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/scheduler.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/scheduler.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/token_statistics.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/token_statistics.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/__pycache__/turn.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/__pycache__/turn.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/chat.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/client.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/compression.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/environment.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/memory.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/next_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/next_speaker.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/prompts.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/scheduler.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/token_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/token_statistics.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/core/turn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/core/turn.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/__pycache__/gemini_service_new.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/__pycache__/gemini_service_new.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/__pycache__/llm_factory.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/__pycache__/llm_factory.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/__pycache__/openai_service.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/__pycache__/openai_service.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/claude_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/claude_service.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/gemini_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/gemini_service.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/gemini_service_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/gemini_service_new.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/llm_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/llm_factory.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/services/openai_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/services/openai_service.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/telemetry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/telemetry/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/telemetry/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/telemetry/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/telemetry/__pycache__/logger.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/telemetry/__pycache__/logger.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/telemetry/__pycache__/metrics.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/telemetry/__pycache__/metrics.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/telemetry/__pycache__/tracer.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/telemetry/__pycache__/tracer.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/telemetry/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/telemetry/logger.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/telemetry/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/telemetry/metrics.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/telemetry/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/telemetry/tracer.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/base.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/base.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/code_execution_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/code_execution_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/directory_list_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/directory_list_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/file_read_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/file_read_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/file_write_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/file_write_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/glob_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/glob_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/grep_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/grep_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/registry.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/registry.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/shell_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/shell_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/web_fetch_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/web_fetch_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/__pycache__/web_search_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/__pycache__/web_search_tool.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/base.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/code_execution_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/code_execution_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/directory_list_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/directory_list_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/file_read_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/file_read_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/file_write_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/file_write_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/glob_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/glob_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/grep_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/grep_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/mcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/mcp/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/mcp/mcp_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/mcp/mcp_adapter.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/mcp/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/mcp/mcp_client.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/mcp/mcp_client.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/mcp/mcp_client.py.bak -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/mcp/mcp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/mcp/mcp_config.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/mcp/mcp_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/mcp/mcp_converter.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/mcp/mcp_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/mcp/mcp_registry.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/registry.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/shell_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/shell_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/web_fetch_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/web_fetch_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/tools/web_search_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/tools/web_search_tool.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/types/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/types/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/types/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/types/__pycache__/core_types.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/types/__pycache__/core_types.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/types/__pycache__/file_types.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/types/__pycache__/file_types.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/types/__pycache__/tool_types.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/types/__pycache__/tool_types.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/types/core_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/types/core_types.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/types/file_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/types/file_types.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/types/tool_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/types/tool_types.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__init__.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__pycache__/debug_logger.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__pycache__/debug_logger.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__pycache__/encoding_utils.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__pycache__/encoding_utils.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__pycache__/errors.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__pycache__/errors.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__pycache__/function_response.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__pycache__/function_response.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__pycache__/parameter_sanitizer.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__pycache__/parameter_sanitizer.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__pycache__/retry.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__pycache__/retry.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/__pycache__/retry_with_backoff.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/__pycache__/retry_with_backoff.cpython-313.pyc -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/debug_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/debug_logger.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/encoding_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/encoding_utils.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/errors.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/function_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/function_response.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/log_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/log_integration.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/parameter_sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/parameter_sanitizer.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/realtime_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/realtime_logger.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/retry.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/retry_with_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/retry_with_backoff.py -------------------------------------------------------------------------------- /packages/core/src/dbrheo/utils/type_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/core/src/dbrheo/utils/type_converter.py -------------------------------------------------------------------------------- /packages/web/README.md: -------------------------------------------------------------------------------- 1 | Web interface is not yet implemented. Please refer to the CLI. 2 | -------------------------------------------------------------------------------- /packages/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/index.html -------------------------------------------------------------------------------- /packages/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/package-lock.json -------------------------------------------------------------------------------- /packages/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/package.json -------------------------------------------------------------------------------- /packages/web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/src/App.tsx -------------------------------------------------------------------------------- /packages/web/src/components/chat/ChatContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/src/components/chat/ChatContainer.tsx -------------------------------------------------------------------------------- /packages/web/src/components/database/QueryEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/src/components/database/QueryEditor.tsx -------------------------------------------------------------------------------- /packages/web/src/components/database/ResultTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/src/components/database/ResultTable.tsx -------------------------------------------------------------------------------- /packages/web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/src/main.tsx -------------------------------------------------------------------------------- /packages/web/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/src/styles/global.css -------------------------------------------------------------------------------- /packages/web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/tailwind.config.js -------------------------------------------------------------------------------- /packages/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/tsconfig.json -------------------------------------------------------------------------------- /packages/web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/tsconfig.node.json -------------------------------------------------------------------------------- /packages/web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/packages/web/vite.config.ts -------------------------------------------------------------------------------- /project_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/README.md -------------------------------------------------------------------------------- /project_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__init__.py -------------------------------------------------------------------------------- /project_tools/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/_content_processor.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/_content_processor.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/_embedding_client.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/_embedding_client.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/_rag_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/_rag_config.cpython-310.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/_rag_config.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/_rag_config.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/_reranker_client.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/_reranker_client.cpython-310.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/_reranker_client.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/_reranker_client.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/_vector_db_client.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/_vector_db_client.cpython-310.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/_vector_db_client.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/_vector_db_client.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/collection_info_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/collection_info_tool.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/doc_index_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/doc_index_tool.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/example_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/example_tool.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/rerank_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/rerank_tool.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/__pycache__/vector_search_tool.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/__pycache__/vector_search_tool.cpython-313.pyc -------------------------------------------------------------------------------- /project_tools/_content_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/_content_processor.py -------------------------------------------------------------------------------- /project_tools/_embedding_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/_embedding_client.py -------------------------------------------------------------------------------- /project_tools/_rag_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/_rag_config.py -------------------------------------------------------------------------------- /project_tools/_reranker_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/_reranker_client.py -------------------------------------------------------------------------------- /project_tools/_vector_db_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/_vector_db_client.py -------------------------------------------------------------------------------- /project_tools/collection_info_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/collection_info_tool.py -------------------------------------------------------------------------------- /project_tools/doc_index_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/doc_index_tool.py -------------------------------------------------------------------------------- /project_tools/example_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/example_tool.py -------------------------------------------------------------------------------- /project_tools/rerank_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/rerank_tool.py -------------------------------------------------------------------------------- /project_tools/vector_search_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/project_tools/vector_search_tool.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/test_documents/README.md -------------------------------------------------------------------------------- /test_documents/computer_vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/test_documents/computer_vision.md -------------------------------------------------------------------------------- /test_documents/deep_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/test_documents/deep_learning.md -------------------------------------------------------------------------------- /test_documents/machine_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/test_documents/machine_learning.md -------------------------------------------------------------------------------- /test_documents/natural_language_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/test_documents/natural_language_processing.md -------------------------------------------------------------------------------- /test_documents/reinforcement_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Din829/agentic-rag/HEAD/test_documents/reinforcement_learning.md --------------------------------------------------------------------------------