quantalogic 0.92__tar.gz → 0.93__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.92 → quantalogic-0.93}/PKG-INFO +57 -30
- {quantalogic-0.92 → quantalogic-0.93}/README.md +56 -29
- {quantalogic-0.92 → quantalogic-0.93}/pyproject.toml +1 -1
- {quantalogic-0.92 → quantalogic-0.93}/LICENSE +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/agent.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/agent_config.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/agent_factory.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/coding_agent.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/config.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/console_print_events.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/console_print_token.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/create_custom_agent.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/docs_cli.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/event_emitter.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/flow/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/generative_model.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/get_model_info.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/interactive_text_editor.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/main.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/memory.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/model_info.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/model_info_list.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/model_info_litellm.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/model_names.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/chat_system_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/code_2_system_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/code_system_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/doc_system_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/legal_2_system_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/legal_system_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/memory_compaction_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/observation_response_format.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/repeated_tool_call_error.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/system_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/task_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/task_summary_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/tools_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts/variables_prompt.j2 +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/prompts.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/quantlitellm.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/search_agent.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/server/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/server/agent_server.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/server/models.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/server/routes.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/server/state.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/server/static/js/event_visualizer.js +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/server/static/js/quantalogic.js +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/server/templates/index.html +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/task_file_reader.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/task_runner.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tool_manager.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/action_gen.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/action_gen_safe.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/agent_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/composio/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/composio/composio.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/database/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/database/generate_database_report_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/database/sql_query_tool_advanced.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_docx_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_epub_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_html_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_ipynb_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_latex_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_pdf_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_pptx_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/download_http_file_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/duckduckgo_search_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/edit_whole_content_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/elixir_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/execute_bash_command_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/file_tracker_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/alpha_vantage_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/ccxt_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/finance_llm_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/google_finance.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/market_intelligence_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/technical_analysis_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/tradingview_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/finance/yahoo_finance.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/git/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/git/bitbucket_clone_repo_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/git/bitbucket_operations_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/git/clone_repo_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/git/git_operations_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/google_packages/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/google_packages/google_news_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/grep_app_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/image_generation/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/image_generation/dalle_e.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/input_question_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/jinja_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/c_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/cpp_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/go_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/java_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/javascript_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/python_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/rust_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/scala_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/typescript_handler.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/list_directory_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/llm_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/llm_vision_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/markitdown_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/nasa_packages/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/nasa_packages/models.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/nasa_packages/nasa_apod_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/nasa_packages/nasa_neows_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/nasa_packages/services.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/nodejs_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/presentation_tools/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/presentation_tools/presentation_llm_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/product_hunt/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/product_hunt/product_hunt_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/product_hunt/services.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/python_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/rag_tool/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/rag_tool/document_rag_sources_.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/rag_tool/ocr_pdf_markdown.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/read_file_block_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/read_file_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/read_html_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/replace_in_file_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/ripgrep_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/safe_python_interpreter_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/search_definition_names_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/sequence_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/serpapi_search_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/sql_query_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/task_complete_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/terminal_capture_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/unified_diff_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utilities/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utilities/csv_processor_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utilities/download_file_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utilities/llm_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utilities/mermaid_validator_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utilities/selenium_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utilities/vscode_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utils/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utils/create_sample_database.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/utils/generate_database_report.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/web_navigation/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/web_navigation/web_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/wikipedia_search_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/write_file_tool.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/__init__.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/ask_user_validation.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/async_utils.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/check_version.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/download_http_file.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/get_all_models.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/get_coding_environment.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/get_environment.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/get_quantalogic_rules_content.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/git_ls.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/lm_studio_model_info.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/read_file.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/read_http_text_content.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/test_python_interpreter.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/utils/xml_utility.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/version.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/version_check.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/welcome_message.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/xml_parser.py +0 -0
- {quantalogic-0.92 → quantalogic-0.93}/quantalogic/xml_tool_parser.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: quantalogic
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.93
|
4
4
|
Summary: QuantaLogic ReAct Agents
|
5
5
|
License: MIT
|
6
6
|
Author: Raphaël MANSUY
|
@@ -125,57 +125,86 @@ Here’s how it flows:
|
|
125
125
|
```mermaid
|
126
126
|
graph TD
|
127
127
|
A[User] -->|Input| B[QuantaLogic]
|
128
|
-
B -->
|
128
|
+
B --> C1[Pure ReAct]
|
129
|
+
B --> C2[CodeAct]
|
129
130
|
B --> D[Flow: Automate]
|
130
131
|
B --> E[Chat: Converse]
|
131
|
-
|
132
|
+
C1 --> F1[LLM + Tools]
|
133
|
+
C2 --> F2[LLM + Code Actions]
|
132
134
|
D --> G[Nodes + Engine]
|
133
135
|
E --> H[Persona + Tools]
|
134
|
-
|
136
|
+
F1 --> I[Output]
|
137
|
+
F2 --> I
|
135
138
|
G --> I
|
136
139
|
H --> I
|
137
140
|
I --> A
|
138
|
-
style A fill:#
|
139
|
-
style
|
141
|
+
style A fill:#ffe5b4,stroke:#555
|
142
|
+
style B fill:#cfe0e8,stroke:#555
|
143
|
+
style C1 fill:#e6e6fa,stroke:#555
|
144
|
+
style C2 fill:#ffd1dc,stroke:#555
|
145
|
+
style D fill:#c8e6c9,stroke:#555
|
146
|
+
style E fill:#fff9c4,stroke:#555
|
147
|
+
style F1 fill:#f0f0f0,stroke:#555
|
148
|
+
style F2 fill:#f0f0f0,stroke:#555
|
149
|
+
style G fill:#d0f0c0,stroke:#555
|
150
|
+
style H fill:#ffefdb,stroke:#555
|
151
|
+
style I fill:#cfe0e8,stroke:#555
|
140
152
|
```
|
141
153
|
|
154
|
+
For detailed CodeAct documentation, see [CodeAct Module](quantalogic_codeact/README.md).
|
155
|
+
|
142
156
|
---
|
143
157
|
|
144
158
|
## How to Get Started
|
145
159
|
|
146
160
|
**How do you dive in?** Install it, set it up, and start creating. We’ll guide you through setup, examples, and pro tips to master QuantaLogic in minutes.
|
147
161
|
|
148
|
-
### Installation
|
162
|
+
### Installation & Setup
|
149
163
|
|
150
|
-
####
|
151
|
-
-
|
152
|
-
-
|
164
|
+
#### Prerequisites
|
165
|
+
- Python >= 3.10+ (required)
|
166
|
+
- Docker (optional; sandboxed execution)
|
167
|
+
- Poetry (optional; for source builds)
|
153
168
|
|
154
|
-
####
|
169
|
+
#### Installation
|
170
|
+
Install the core CLI and (optionally) CodeAct extension:
|
155
171
|
```bash
|
156
172
|
pip install quantalogic
|
173
|
+
pip install quantalogic-codeact
|
157
174
|
```
|
158
|
-
|
159
|
-
#### Option 2: pipx (Clean Setup)
|
175
|
+
Or with pipx:
|
160
176
|
```bash
|
161
177
|
pipx install quantalogic
|
178
|
+
pipx install quantalogic-codeact
|
162
179
|
```
|
163
180
|
|
164
|
-
####
|
181
|
+
#### Developer Build (optional)
|
165
182
|
```bash
|
166
183
|
git clone https://github.com/quantalogic/quantalogic.git
|
167
184
|
cd quantalogic
|
168
185
|
python -m venv .venv
|
169
|
-
|
186
|
+
# macOS/Linux
|
187
|
+
source .venv/bin/activate
|
188
|
+
# Windows
|
189
|
+
.venv\\Scripts\\activate
|
170
190
|
poetry install
|
171
191
|
```
|
172
192
|
|
173
|
-
|
193
|
+
#### Verify Installation
|
174
194
|
```bash
|
175
|
-
|
176
|
-
|
195
|
+
quantalogic --help
|
196
|
+
quantalogic_codeact --help
|
177
197
|
```
|
178
198
|
|
199
|
+
#### Configure API Keys
|
200
|
+
```bash
|
201
|
+
cat <<EOF > .env
|
202
|
+
OPENAI_API_KEY=sk-your-key
|
203
|
+
DEEPSEEK_API_KEY=ds-your-key
|
204
|
+
EOF
|
205
|
+
```
|
206
|
+
> For advanced settings, see [docs/config.md](./docs/config.md)
|
207
|
+
|
179
208
|
---
|
180
209
|
|
181
210
|
### Quick Start Examples
|
@@ -194,6 +223,16 @@ quantalogic chat --persona "You’re a cosmic guide" "What’s the tallest mount
|
|
194
223
|
```
|
195
224
|
**Output**: A lively response, possibly with search results!
|
196
225
|
|
226
|
+
#### CLI: CodeAct Shell
|
227
|
+
```bash
|
228
|
+
quantalogic_codeact shell
|
229
|
+
```
|
230
|
+
|
231
|
+
#### CLI: CodeAct Task
|
232
|
+
```bash
|
233
|
+
quantalogic_codeact task "Solve 2 + 2" --model deepseek/deepseek-chat --timeout 60 --streaming
|
234
|
+
```
|
235
|
+
|
197
236
|
#### Python: ReAct Agent
|
198
237
|
```python
|
199
238
|
from quantalogic import Agent
|
@@ -396,18 +435,6 @@ result = agent.solve_task("Write a poem")
|
|
396
435
|
|
397
436
|
**Memory Magic**: Imagine a sticky note board. As tasks or chats grow, QuantaLogic condenses old notes to keep space for new ones—efficient and clutter-free.
|
398
437
|
|
399
|
-
---
|
400
|
-
|
401
|
-
### Example Playground
|
402
|
-
Dive into our [Examples Folder](./examples/) for inspiration:
|
403
|
-
- **Code Generation**: [05-code.py](./examples/05-code.py)
|
404
|
-
- **Workflow Demo**: [story_generator_agent.py](./examples/flow/story_generator/story_generator_agent.py)
|
405
|
-
- **Finance Tasks**: [10-finance-agent.py](./examples/10-finance-agent.py)
|
406
|
-
|
407
|
-
**Video Walkthrough**:
|
408
|
-
[](./examples/generated_tutorials/python/quantalogic_long.mp4)
|
409
|
-
|
410
|
-
---
|
411
438
|
|
412
439
|
### Contributing
|
413
440
|
|
@@ -62,57 +62,86 @@ Here’s how it flows:
|
|
62
62
|
```mermaid
|
63
63
|
graph TD
|
64
64
|
A[User] -->|Input| B[QuantaLogic]
|
65
|
-
B -->
|
65
|
+
B --> C1[Pure ReAct]
|
66
|
+
B --> C2[CodeAct]
|
66
67
|
B --> D[Flow: Automate]
|
67
68
|
B --> E[Chat: Converse]
|
68
|
-
|
69
|
+
C1 --> F1[LLM + Tools]
|
70
|
+
C2 --> F2[LLM + Code Actions]
|
69
71
|
D --> G[Nodes + Engine]
|
70
72
|
E --> H[Persona + Tools]
|
71
|
-
|
73
|
+
F1 --> I[Output]
|
74
|
+
F2 --> I
|
72
75
|
G --> I
|
73
76
|
H --> I
|
74
77
|
I --> A
|
75
|
-
style A fill:#
|
76
|
-
style
|
78
|
+
style A fill:#ffe5b4,stroke:#555
|
79
|
+
style B fill:#cfe0e8,stroke:#555
|
80
|
+
style C1 fill:#e6e6fa,stroke:#555
|
81
|
+
style C2 fill:#ffd1dc,stroke:#555
|
82
|
+
style D fill:#c8e6c9,stroke:#555
|
83
|
+
style E fill:#fff9c4,stroke:#555
|
84
|
+
style F1 fill:#f0f0f0,stroke:#555
|
85
|
+
style F2 fill:#f0f0f0,stroke:#555
|
86
|
+
style G fill:#d0f0c0,stroke:#555
|
87
|
+
style H fill:#ffefdb,stroke:#555
|
88
|
+
style I fill:#cfe0e8,stroke:#555
|
77
89
|
```
|
78
90
|
|
91
|
+
For detailed CodeAct documentation, see [CodeAct Module](quantalogic_codeact/README.md).
|
92
|
+
|
79
93
|
---
|
80
94
|
|
81
95
|
## How to Get Started
|
82
96
|
|
83
97
|
**How do you dive in?** Install it, set it up, and start creating. We’ll guide you through setup, examples, and pro tips to master QuantaLogic in minutes.
|
84
98
|
|
85
|
-
### Installation
|
99
|
+
### Installation & Setup
|
86
100
|
|
87
|
-
####
|
88
|
-
-
|
89
|
-
-
|
101
|
+
#### Prerequisites
|
102
|
+
- Python >= 3.10+ (required)
|
103
|
+
- Docker (optional; sandboxed execution)
|
104
|
+
- Poetry (optional; for source builds)
|
90
105
|
|
91
|
-
####
|
106
|
+
#### Installation
|
107
|
+
Install the core CLI and (optionally) CodeAct extension:
|
92
108
|
```bash
|
93
109
|
pip install quantalogic
|
110
|
+
pip install quantalogic-codeact
|
94
111
|
```
|
95
|
-
|
96
|
-
#### Option 2: pipx (Clean Setup)
|
112
|
+
Or with pipx:
|
97
113
|
```bash
|
98
114
|
pipx install quantalogic
|
115
|
+
pipx install quantalogic-codeact
|
99
116
|
```
|
100
117
|
|
101
|
-
####
|
118
|
+
#### Developer Build (optional)
|
102
119
|
```bash
|
103
120
|
git clone https://github.com/quantalogic/quantalogic.git
|
104
121
|
cd quantalogic
|
105
122
|
python -m venv .venv
|
106
|
-
|
123
|
+
# macOS/Linux
|
124
|
+
source .venv/bin/activate
|
125
|
+
# Windows
|
126
|
+
.venv\\Scripts\\activate
|
107
127
|
poetry install
|
108
128
|
```
|
109
129
|
|
110
|
-
|
130
|
+
#### Verify Installation
|
111
131
|
```bash
|
112
|
-
|
113
|
-
|
132
|
+
quantalogic --help
|
133
|
+
quantalogic_codeact --help
|
114
134
|
```
|
115
135
|
|
136
|
+
#### Configure API Keys
|
137
|
+
```bash
|
138
|
+
cat <<EOF > .env
|
139
|
+
OPENAI_API_KEY=sk-your-key
|
140
|
+
DEEPSEEK_API_KEY=ds-your-key
|
141
|
+
EOF
|
142
|
+
```
|
143
|
+
> For advanced settings, see [docs/config.md](./docs/config.md)
|
144
|
+
|
116
145
|
---
|
117
146
|
|
118
147
|
### Quick Start Examples
|
@@ -131,6 +160,16 @@ quantalogic chat --persona "You’re a cosmic guide" "What’s the tallest mount
|
|
131
160
|
```
|
132
161
|
**Output**: A lively response, possibly with search results!
|
133
162
|
|
163
|
+
#### CLI: CodeAct Shell
|
164
|
+
```bash
|
165
|
+
quantalogic_codeact shell
|
166
|
+
```
|
167
|
+
|
168
|
+
#### CLI: CodeAct Task
|
169
|
+
```bash
|
170
|
+
quantalogic_codeact task "Solve 2 + 2" --model deepseek/deepseek-chat --timeout 60 --streaming
|
171
|
+
```
|
172
|
+
|
134
173
|
#### Python: ReAct Agent
|
135
174
|
```python
|
136
175
|
from quantalogic import Agent
|
@@ -333,18 +372,6 @@ result = agent.solve_task("Write a poem")
|
|
333
372
|
|
334
373
|
**Memory Magic**: Imagine a sticky note board. As tasks or chats grow, QuantaLogic condenses old notes to keep space for new ones—efficient and clutter-free.
|
335
374
|
|
336
|
-
---
|
337
|
-
|
338
|
-
### Example Playground
|
339
|
-
Dive into our [Examples Folder](./examples/) for inspiration:
|
340
|
-
- **Code Generation**: [05-code.py](./examples/05-code.py)
|
341
|
-
- **Workflow Demo**: [story_generator_agent.py](./examples/flow/story_generator/story_generator_agent.py)
|
342
|
-
- **Finance Tasks**: [10-finance-agent.py](./examples/10-finance-agent.py)
|
343
|
-
|
344
|
-
**Video Walkthrough**:
|
345
|
-
[](./examples/generated_tutorials/python/quantalogic_long.mp4)
|
346
|
-
|
347
|
-
---
|
348
375
|
|
349
376
|
### Contributing
|
350
377
|
|
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
|
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.92 → quantalogic-0.93}/quantalogic/tools/database/generate_database_report_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_docx_tool.py
RENAMED
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_epub_tool.py
RENAMED
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_html_tool.py
RENAMED
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_ipynb_tool.py
RENAMED
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_latex_tool.py
RENAMED
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/document_tools/markdown_to_pdf_tool.py
RENAMED
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/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
|
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.92 → quantalogic-0.93}/quantalogic/tools/language_handlers/javascript_handler.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quantalogic-0.92 → quantalogic-0.93}/quantalogic/tools/presentation_tools/presentation_llm_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
|
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
|