quantalogic 0.40.0__tar.gz → 0.50.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {quantalogic-0.40.0 → quantalogic-0.50.1}/PKG-INFO +1 -78
- {quantalogic-0.40.0 → quantalogic-0.50.1}/pyproject.toml +116 -64
- {quantalogic-0.40.0 → quantalogic-0.50.1}/LICENSE +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/README.md +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/__init__.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/agent.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/agent_config.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/agent_factory.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/coding_agent.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/config.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/console_print_events.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/console_print_token.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/docs_cli.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/event_emitter.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/flow/__init__.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/flow/flow.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/flow/flow_extractor.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/flow/flow_generator.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/flow/flow_manager.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/flow/flow_manager_schema.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/flow/flow_yaml.md +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/generative_model.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/get_model_info.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/interactive_text_editor.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/main.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/memory.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/model_info.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/model_info_list.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/model_info_litellm.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/model_names.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/prompts.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/quantlitellm.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/search_agent.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/server/__init__.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/server/agent_server.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/server/models.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/server/routes.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/server/state.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/server/static/js/event_visualizer.js +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/server/static/js/quantalogic.js +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/server/templates/index.html +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/task_file_reader.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/task_runner.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tool_manager.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/__init__.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/agent_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/composio/composio.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/database/generate_database_report_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/database/sql_query_tool_advanced.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_docx_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_epub_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_html_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_ipynb_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_latex_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_pdf_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_pptx_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/download_http_file_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/duckduckgo_search_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/edit_whole_content_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/elixir_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/execute_bash_command_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/alpha_vantage_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/ccxt_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/finance_llm_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/google_finance.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/market_intelligence_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/technical_analysis_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/tradingview_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/yahoo_finance.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/git/bitbucket_clone_repo_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/git/bitbucket_operations_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/git/clone_repo_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/git/git_operations_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/google_packages/google_news_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/grep_app_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/image_generation/dalle_e.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/input_question_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/jinja_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/__init__.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/c_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/cpp_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/go_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/java_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/javascript_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/python_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/rust_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/scala_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/typescript_handler.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/list_directory_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/llm_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/llm_vision_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/markitdown_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/nasa_packages/models.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/nasa_packages/nasa_apod_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/nasa_packages/nasa_neows_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/nasa_packages/services.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/nodejs_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/presentation_tools/presentation_llm_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/product_hunt/product_hunt_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/product_hunt/services.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/python_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/rag_tool/__init__.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/rag_tool/document_metadata.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/rag_tool/query_response.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/rag_tool/rag_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/rag_tool/rag_tool_beta.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/read_file_block_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/read_file_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/read_html_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/replace_in_file_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/ripgrep_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/safe_python_interpreter_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/search_definition_names.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/sequence_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/serpapi_search_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/sql_query_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/task_complete_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/unified_diff_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/utilities/csv_processor_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/utilities/download_file_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/utilities/mermaid_validator_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/utils/__init__.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/utils/create_sample_database.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/utils/generate_database_report.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/wikipedia_search_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/write_file_tool.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/__init__.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/ask_user_validation.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/async_utils.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/check_version.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/download_http_file.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/get_all_models.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/get_coding_environment.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/get_environment.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/get_quantalogic_rules_content.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/git_ls.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/lm_studio_model_info.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/python_interpreter.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/read_file.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/read_http_text_content.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/xml_utility.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/version.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/version_check.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/welcome_message.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/xml_parser.py +0 -0
- {quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/xml_tool_parser.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: quantalogic
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.50.1
|
4
4
|
Summary: QuantaLogic ReAct Agents
|
5
5
|
Author: Raphaël MANSUY
|
6
6
|
Author-email: raphael.mansuy@gmail.com
|
@@ -8,91 +8,14 @@ Requires-Python: >=3.12,<4.0
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
9
|
Classifier: Programming Language :: Python :: 3.12
|
10
10
|
Classifier: Programming Language :: Python :: 3.13
|
11
|
-
Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
|
12
|
-
Requires-Dist: bibtexparser (>=1.4.3,<2.0.0)
|
13
|
-
Requires-Dist: boto3 (>=1.35.86,<2.0.0)
|
14
|
-
Requires-Dist: ccxt (>=4.4.61,<5.0.0)
|
15
|
-
Requires-Dist: chromadb (>=0.6.3,<0.7.0)
|
16
11
|
Requires-Dist: click (>=8.1.8,<9.0.0)
|
17
|
-
Requires-Dist: composio (>=0.1.1,<0.2.0)
|
18
|
-
Requires-Dist: duckduckgo-search (>=7.2.1,<8.0.0)
|
19
|
-
Requires-Dist: ebooklib (>=0.18,<0.19)
|
20
|
-
Requires-Dist: epub (>=0.5.2,<0.6.0)
|
21
|
-
Requires-Dist: faiss-cpu (>=1.10.0,<2.0.0)
|
22
|
-
Requires-Dist: faker (>=33.3.1,<34.0.0)
|
23
|
-
Requires-Dist: fastapi (>=0.115.6,<0.116.0)
|
24
|
-
Requires-Dist: fuzzywuzzy (>=0.18.0,<0.19.0)
|
25
|
-
Requires-Dist: gitpython (>=3.1.44,<4.0.0)
|
26
|
-
Requires-Dist: gnews (>=0.4.0,<0.5.0)
|
27
|
-
Requires-Dist: google-auth (>=2.20.0,<3.0.0)
|
28
|
-
Requires-Dist: google-search-results (>=2.4.2,<3.0.0)
|
29
|
-
Requires-Dist: html2text (>=2024.2.26,<2025.0.0)
|
30
|
-
Requires-Dist: instructor (>=1.7.2,<2.0.0)
|
31
|
-
Requires-Dist: ipython (>=8.32.0,<9.0.0)
|
32
12
|
Requires-Dist: jinja2 (>=3.1.5,<4.0.0)
|
33
13
|
Requires-Dist: litellm (>=1.56.4,<2.0.0)
|
34
|
-
Requires-Dist: llama-index (>=0.12.19,<0.13.0)
|
35
|
-
Requires-Dist: llama-index-embeddings-bedrock (>=0.5.0,<0.6.0)
|
36
|
-
Requires-Dist: llama-index-embeddings-huggingface (>=0.5.1,<0.6.0)
|
37
|
-
Requires-Dist: llama-index-embeddings-instructor (>=0.3.0,<0.4.0)
|
38
|
-
Requires-Dist: llama-index-embeddings-openai (>=0.3.1,<0.4.0)
|
39
|
-
Requires-Dist: llama-index-vector-stores-chroma (>=0.4.1,<0.5.0)
|
40
|
-
Requires-Dist: llama-index-vector-stores-faiss (>=0.3.0,<0.4.0)
|
41
|
-
Requires-Dist: llmlingua (>=0.2.2,<0.3.0)
|
42
14
|
Requires-Dist: loguru (>=0.7.3,<0.8.0)
|
43
|
-
Requires-Dist: markdown (>=3.7,<4.0)
|
44
|
-
Requires-Dist: markdownify (>=0.14.1,<0.15.0)
|
45
|
-
Requires-Dist: markitdown (>=0.0.1a3,<0.0.2)
|
46
|
-
Requires-Dist: mermaid-py (>=0.7.0,<0.8.0)
|
47
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin (>=1.2.0,<2.0.0)
|
48
|
-
Requires-Dist: mkdocs-macros-plugin (>=1.0.4,<2.0.0)
|
49
|
-
Requires-Dist: mkdocs-material[imaging] (>=9.5.49,<10.0.0)
|
50
|
-
Requires-Dist: mkdocs-mermaid2-plugin (>=1.1.1,<2.0.0)
|
51
|
-
Requires-Dist: mkdocs-minify-plugin (>=0.7.1,<0.8.0)
|
52
|
-
Requires-Dist: mkdocstrings (>=0.24.0,<0.25.0)
|
53
|
-
Requires-Dist: mkdocstrings-python (>=1.7.0,<2.0.0)
|
54
|
-
Requires-Dist: nbformat (>=5.10.4,<6.0.0)
|
55
|
-
Requires-Dist: networkx (>=3.4.2,<4.0.0)
|
56
|
-
Requires-Dist: numpy (>=2.2.3,<3.0.0)
|
57
|
-
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
58
|
-
Requires-Dist: pathspec (>=0.12.1,<0.13.0)
|
59
|
-
Requires-Dist: pillow (>=10.2,<11.0)
|
60
|
-
Requires-Dist: pinecone-client (>=6.0.0,<7.0.0)
|
61
15
|
Requires-Dist: prompt-toolkit (>=3.0.48,<4.0.0)
|
62
16
|
Requires-Dist: pydantic (>=2.10.4,<3.0.0)
|
63
|
-
Requires-Dist: pygments (>=2.19.1,<3.0.0)
|
64
|
-
Requires-Dist: pymdown-extensions (>=10.3.1,<11.0.0)
|
65
|
-
Requires-Dist: pypdf (>=5.3.0,<6.0.0)
|
66
|
-
Requires-Dist: python-docx (>=1.1.2,<2.0.0)
|
67
|
-
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
68
|
-
Requires-Dist: python-levenshtein (>=0.26.1,<0.27.0)
|
69
|
-
Requires-Dist: python-multipart (>=0.0.20,<0.0.21)
|
70
|
-
Requires-Dist: python-pptx (>=1.0.2,<2.0.0)
|
71
|
-
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
72
17
|
Requires-Dist: rich (>=13.9.4,<14.0.0)
|
73
|
-
Requires-Dist: serpapi (>=0.1.5,<0.2.0)
|
74
|
-
Requires-Dist: sqlalchemy (>=2.0.37,<3.0.0)
|
75
|
-
Requires-Dist: ta (>=0.11.0,<0.12.0)
|
76
18
|
Requires-Dist: tenacity (>=9.0.0,<10.0.0)
|
77
|
-
Requires-Dist: toml (>=0.10.2,<0.11.0)
|
78
|
-
Requires-Dist: torch (>=2.6.0,<3.0.0)
|
79
|
-
Requires-Dist: transformers (>=4.49.0,<5.0.0)
|
80
|
-
Requires-Dist: tree-sitter (>=0.23.2,<0.24.0)
|
81
|
-
Requires-Dist: tree-sitter-c (>=0.23.4,<0.24.0)
|
82
|
-
Requires-Dist: tree-sitter-cpp (>=0.23.4,<0.24.0)
|
83
|
-
Requires-Dist: tree-sitter-go (>=0.23.4,<0.24.0)
|
84
|
-
Requires-Dist: tree-sitter-java (>=0.23.5,<0.24.0)
|
85
|
-
Requires-Dist: tree-sitter-javascript (>=0.23.1,<0.24.0)
|
86
|
-
Requires-Dist: tree-sitter-python (>=0.23.6,<0.24.0)
|
87
|
-
Requires-Dist: tree-sitter-rust (>=0.23.2,<0.24.0)
|
88
|
-
Requires-Dist: tree-sitter-scala (>=0.23.4,<0.24.0)
|
89
|
-
Requires-Dist: tree-sitter-typescript (>=0.23.2,<0.24.0)
|
90
|
-
Requires-Dist: tvDatafeed @ git+https://github.com/rongardF/tvdatafeed.git
|
91
|
-
Requires-Dist: types-requests (>=2.32.0.20241016,<3.0.0.0)
|
92
|
-
Requires-Dist: uvicorn (>=0.34.0,<0.35.0)
|
93
|
-
Requires-Dist: weasyprint (>=64.0,<65.0)
|
94
|
-
Requires-Dist: websocket (>=0.2.1,<0.3.0)
|
95
|
-
Requires-Dist: yfinance (>=0.2.53,<0.3.0)
|
96
19
|
Description-Content-Type: text/markdown
|
97
20
|
|
98
21
|
# QuantaLogic
|
@@ -1,18 +1,102 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "quantalogic"
|
3
|
-
version = "0.
|
3
|
+
version = "0.50.1"
|
4
4
|
description = "QuantaLogic ReAct Agents"
|
5
5
|
authors = ["Raphaël MANSUY <raphael.mansuy@gmail.com>"]
|
6
6
|
readme = "README.md"
|
7
7
|
packages = [{include = "quantalogic"}]
|
8
8
|
|
9
|
+
# Core dependencies required for the base Agent and ToolManager
|
9
10
|
[tool.poetry.dependencies]
|
10
11
|
python = "^3.12"
|
11
12
|
pydantic = "^2.10.4"
|
12
13
|
litellm = "^1.56.4"
|
13
14
|
rich = "^13.9.4"
|
14
15
|
loguru = "^0.7.3"
|
16
|
+
tenacity = "^9.0.0"
|
17
|
+
prompt-toolkit = "^3.0.48"
|
18
|
+
click = "^8.1.8"
|
19
|
+
jinja2 = "^3.1.5"
|
20
|
+
|
21
|
+
# Optional group for file-related tools
|
22
|
+
[tool.poetry.group.file-tools]
|
23
|
+
optional = false
|
24
|
+
|
25
|
+
[tool.poetry.group.file-tools.dependencies]
|
26
|
+
python-dotenv = "^1.0.1"
|
27
|
+
gitpython = "^3.1.44"
|
28
|
+
|
29
|
+
# Optional group for search-related tools
|
30
|
+
[tool.poetry.group.search-tools]
|
31
|
+
optional = false
|
32
|
+
|
33
|
+
[tool.poetry.group.search-tools.dependencies]
|
34
|
+
duckduckgo-search = "^7.2.1"
|
35
|
+
google-search-results = "^2.4.2"
|
36
|
+
serpapi = "^0.1.5"
|
37
|
+
|
38
|
+
# Optional group for document conversion tools
|
39
|
+
[tool.poetry.group.document-tools]
|
40
|
+
optional = true
|
41
|
+
|
42
|
+
[tool.poetry.group.document-tools.dependencies]
|
43
|
+
markitdown = "^0.0.1a3"
|
44
|
+
weasyprint = "^64.0"
|
45
|
+
python-docx = "^1.1.2"
|
46
|
+
python-pptx = "^1.0.2"
|
47
|
+
pypdf = "^5.3.0"
|
48
|
+
ebooklib = "^0.18"
|
49
|
+
markdown = "^3.7"
|
50
|
+
pygments = "^2.19.1"
|
51
|
+
mermaid-py = "^0.7.0"
|
52
|
+
pillow = ">=10.2,<11.0"
|
53
|
+
|
54
|
+
# Optional group for database tools
|
55
|
+
[tool.poetry.group.database-tools]
|
56
|
+
optional = true
|
57
|
+
|
58
|
+
[tool.poetry.group.database-tools.dependencies]
|
59
|
+
sqlalchemy = "^2.0.37"
|
60
|
+
chromadb = "^0.6.3"
|
61
|
+
faiss-cpu = "^1.10.0"
|
62
|
+
pinecone-client = "^6.0.0"
|
63
|
+
|
64
|
+
# Optional group for LLM and AI-related tools
|
65
|
+
[tool.poetry.group.llm-tools]
|
66
|
+
optional = true
|
67
|
+
|
68
|
+
[tool.poetry.group.llm-tools.dependencies]
|
69
|
+
transformers = "^4.49.0"
|
70
|
+
torch = "^2.6.0"
|
71
|
+
llama-index = "^0.12.19"
|
72
|
+
llama-index-embeddings-openai = "^0.3.1"
|
73
|
+
llama-index-embeddings-huggingface = "^0.5.1"
|
74
|
+
llama-index-embeddings-instructor = "^0.3.0"
|
75
|
+
llama-index-embeddings-bedrock = "^0.5.0"
|
76
|
+
llama-index-vector-stores-chroma = "^0.4.1"
|
77
|
+
llama-index-vector-stores-faiss = "^0.3.0"
|
78
|
+
llmlingua = "^0.2.2"
|
79
|
+
instructor = "^1.7.2"
|
80
|
+
|
81
|
+
# Optional group for web and API tools
|
82
|
+
[tool.poetry.group.web-tools]
|
83
|
+
optional = true
|
84
|
+
|
85
|
+
[tool.poetry.group.web-tools.dependencies]
|
15
86
|
boto3 = "^1.35.86"
|
87
|
+
uvicorn = "^0.34.0"
|
88
|
+
fastapi = "^0.115.6"
|
89
|
+
websocket = "^0.2.1"
|
90
|
+
requests = "^2.32.3"
|
91
|
+
beautifulsoup4 = "^4.12.3"
|
92
|
+
html2text = "^2024.2.26"
|
93
|
+
python-multipart = "^0.0.20"
|
94
|
+
|
95
|
+
# Optional group for code parsing tools
|
96
|
+
[tool.poetry.group.code-parsing]
|
97
|
+
optional = false
|
98
|
+
|
99
|
+
[tool.poetry.group.code-parsing.dependencies]
|
16
100
|
tree-sitter-python = "^0.23.6"
|
17
101
|
tree-sitter = "^0.23.2"
|
18
102
|
tree-sitter-javascript = "^0.23.1"
|
@@ -23,20 +107,12 @@ tree-sitter-go = "^0.23.4"
|
|
23
107
|
tree-sitter-rust = "^0.23.2"
|
24
108
|
tree-sitter-c = "^0.23.4"
|
25
109
|
tree-sitter-cpp = "^0.23.4"
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
google-auth = "^2.20.0"
|
33
|
-
pathspec = "^0.12.1"
|
34
|
-
click = "^8.1.8"
|
35
|
-
toml = "^0.10.2"
|
36
|
-
types-requests = "^2.32.0.20241016"
|
37
|
-
google-search-results = "^2.4.2"
|
38
|
-
serpapi = "^0.1.5"
|
39
|
-
duckduckgo-search = "^7.2.1"
|
110
|
+
|
111
|
+
# Optional group for documentation tools
|
112
|
+
[tool.poetry.group.docs]
|
113
|
+
optional = true
|
114
|
+
|
115
|
+
[tool.poetry.group.docs.dependencies]
|
40
116
|
mkdocs-material = {extras = ["imaging"], version = "^9.5.49"}
|
41
117
|
mkdocs-mermaid2-plugin = "^1.1.1"
|
42
118
|
mkdocs-minify-plugin = "^0.7.1"
|
@@ -45,60 +121,37 @@ mkdocs-macros-plugin = "^1.0.4"
|
|
45
121
|
mkdocstrings = "^0.24.0"
|
46
122
|
mkdocstrings-python = "^1.7.0"
|
47
123
|
pymdown-extensions = "^10.3.1"
|
48
|
-
|
49
|
-
|
50
|
-
|
124
|
+
mkdocs = "^1.6.0"
|
125
|
+
|
126
|
+
# Optional group for additional utilities
|
127
|
+
[tool.poetry.group.utilities]
|
128
|
+
optional = true
|
129
|
+
|
130
|
+
[tool.poetry.group.utilities.dependencies]
|
131
|
+
pathspec = "^0.12.1"
|
132
|
+
google-auth = "^2.20.0"
|
133
|
+
toml = "^0.10.2"
|
134
|
+
types-requests = "^2.32.0.20241016"
|
51
135
|
markdownify = "^0.14.1"
|
52
|
-
tvDatafeed = { git = "https://github.com/rongardF/tvdatafeed.git" }
|
53
|
-
requests = "^2.32.3"
|
54
|
-
sqlalchemy = "^2.0.37"
|
55
|
-
python-dotenv = "^1.0.1"
|
56
136
|
networkx = "^3.4.2"
|
57
137
|
faker = "^33.3.1"
|
58
138
|
fuzzywuzzy = "^0.18.0"
|
59
139
|
python-levenshtein = "^0.26.1"
|
60
|
-
instructor = "^1.7.2"
|
61
140
|
gnews = "^0.4.0"
|
62
141
|
composio = "^0.1.1"
|
63
|
-
html2text = "^2024.2.26"
|
64
|
-
python-multipart = "^0.0.20"
|
65
|
-
gitpython = "^3.1.44"
|
66
|
-
python-docx = "^1.1.2"
|
67
|
-
python-pptx = "^1.0.2"
|
68
|
-
mermaid-py = "^0.7.0"
|
69
|
-
pillow = ">=10.2,<11.0"
|
70
|
-
markdown = "^3.7"
|
71
|
-
weasyprint = "^64.0"
|
72
|
-
pygments = "^2.19.1"
|
73
142
|
bibtexparser = "^1.4.3"
|
74
|
-
ebooklib = "^0.18"
|
75
143
|
nbformat = "^5.10.4"
|
76
144
|
ta = "^0.11.0"
|
77
145
|
pandas = "^2.2.3"
|
78
146
|
numpy = "^2.2.3"
|
79
147
|
yfinance = "^0.2.53"
|
80
148
|
ccxt = "^4.4.61"
|
81
|
-
llama-index = "^0.12.19"
|
82
|
-
chromadb = "^0.6.3"
|
83
|
-
faiss-cpu = "^1.10.0"
|
84
|
-
pinecone-client = "^6.0.0"
|
85
|
-
transformers = "^4.49.0"
|
86
|
-
torch = "^2.6.0"
|
87
|
-
pypdf = "^5.3.0"
|
88
|
-
epub = "^0.5.2"
|
89
|
-
llama-index-embeddings-openai = "^0.3.1"
|
90
|
-
llama-index-embeddings-huggingface = "^0.5.1"
|
91
|
-
llama-index-embeddings-instructor = "^0.3.0"
|
92
|
-
llama-index-embeddings-bedrock = "^0.5.0"
|
93
|
-
llama-index-vector-stores-chroma = "^0.4.1"
|
94
|
-
llama-index-vector-stores-faiss = "^0.3.0"
|
95
149
|
ipython = "^8.32.0"
|
150
|
+
epub = "^0.5.2"
|
96
151
|
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
docs-build = "quantalogic.docs_cli:build_docs"
|
101
|
-
docs-deploy = "quantalogic.docs_cli:deploy_docs"
|
152
|
+
# Development dependencies
|
153
|
+
[tool.poetry.group.dev]
|
154
|
+
optional = false
|
102
155
|
|
103
156
|
[tool.poetry.group.dev.dependencies]
|
104
157
|
ruff = "^0.8.4"
|
@@ -106,22 +159,20 @@ pytest = "^8.2.0"
|
|
106
159
|
pytest-mock = "^3.14.0"
|
107
160
|
litellm = "^1.55.9"
|
108
161
|
ollama = "^0.4.4"
|
109
|
-
mkdocs = "^1.6.0"
|
110
|
-
mkdocs-material = "^9.5.0"
|
111
162
|
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
mkdocstrings-python = "^1.7.0"
|
119
|
-
pymdown-extensions = "^10.3.1"
|
163
|
+
# Scripts for CLI and documentation
|
164
|
+
[tool.poetry.scripts]
|
165
|
+
quantalogic = "quantalogic.main:cli"
|
166
|
+
docs-serve = "quantalogic.docs_cli:serve_docs"
|
167
|
+
docs-build = "quantalogic.docs_cli:build_docs"
|
168
|
+
docs-deploy = "quantalogic.docs_cli:deploy_docs"
|
120
169
|
|
170
|
+
# Build system configuration
|
121
171
|
[build-system]
|
122
172
|
requires = ["poetry-core"]
|
123
173
|
build-backend = "poetry.core.masonry.api"
|
124
174
|
|
175
|
+
# Ruff linting configuration
|
125
176
|
[tool.ruff]
|
126
177
|
target-version = "py312"
|
127
178
|
line-length = 88
|
@@ -133,10 +184,11 @@ ignore = ["E501"]
|
|
133
184
|
[tool.ruff.format]
|
134
185
|
preview = true
|
135
186
|
|
187
|
+
# Pytest configuration
|
136
188
|
[tool.pytest.ini_options]
|
137
189
|
addopts = "-v"
|
138
190
|
markers = [
|
139
191
|
"integration: marks integration tests that require external services",
|
140
192
|
"unit: marks unit tests"
|
141
193
|
]
|
142
|
-
testpaths = ["tests"]
|
194
|
+
testpaths = ["tests"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/database/sql_query_tool_advanced.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_docx_tool.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_epub_tool.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_html_tool.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_ipynb_tool.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_latex_tool.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_pdf_tool.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/document_tools/markdown_to_pptx_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/market_intelligence_tool.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/finance/technical_analysis_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/git/bitbucket_clone_repo_tool.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/git/bitbucket_operations_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/google_packages/google_news_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/cpp_handler.py
RENAMED
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/java_handler.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/javascript_handler.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/python_handler.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/rust_handler.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/scala_handler.py
RENAMED
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/language_handlers/typescript_handler.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/nasa_packages/nasa_neows_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/product_hunt/product_hunt_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/utilities/mermaid_validator_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/tools/utils/generate_database_report.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.40.0 → quantalogic-0.50.1}/quantalogic/utils/get_quantalogic_rules_content.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|