quantalogic 0.50.11__py3-none-any.whl → 0.50.17__py3-none-any.whl
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/agent_config.py +1 -224
- quantalogic/agent_factory.py +12 -13
- quantalogic/coding_agent.py +1 -1
- quantalogic/create_custom_agent.py +254 -0
- quantalogic/tools/__init__.py +66 -106
- quantalogic/tools/composio/__init__.py +18 -0
- quantalogic/tools/composio/composio.py +3 -48
- quantalogic/tools/database/__init__.py +20 -0
- quantalogic/tools/database/sql_query_tool_advanced.py +5 -22
- quantalogic/tools/document_tools/__init__.py +30 -0
- quantalogic/tools/finance/__init__.py +32 -0
- quantalogic/tools/git/__init__.py +24 -0
- quantalogic/tools/google_packages/__init__.py +18 -0
- quantalogic/tools/image_generation/__init__.py +18 -0
- quantalogic/tools/nasa_packages/__init__.py +20 -0
- quantalogic/tools/presentation_tools/__init__.py +18 -0
- quantalogic/tools/product_hunt/__init__.py +18 -0
- quantalogic/tools/rag_tool/__init__.py +24 -48
- quantalogic/tools/sql_query_tool.py +8 -25
- quantalogic/tools/utilities/__init__.py +22 -0
- quantalogic/tools/utils/create_sample_database.py +7 -64
- quantalogic/tools/utils/generate_database_report.py +2 -7
- {quantalogic-0.50.11.dist-info → quantalogic-0.50.17.dist-info}/METADATA +1 -1
- {quantalogic-0.50.11.dist-info → quantalogic-0.50.17.dist-info}/RECORD +27 -15
- {quantalogic-0.50.11.dist-info → quantalogic-0.50.17.dist-info}/LICENSE +0 -0
- {quantalogic-0.50.11.dist-info → quantalogic-0.50.17.dist-info}/WHEEL +0 -0
- {quantalogic-0.50.11.dist-info → quantalogic-0.50.17.dist-info}/entry_points.txt +0 -0
@@ -1,20 +1,10 @@
|
|
1
1
|
"""Tool for executing SQL queries and returning paginated results in markdown format."""
|
2
2
|
|
3
|
-
import
|
4
|
-
from typing import Any, Dict, List, TYPE_CHECKING
|
3
|
+
from typing import Any, Dict, List
|
5
4
|
|
6
5
|
from pydantic import Field, ValidationError
|
7
|
-
|
8
|
-
|
9
|
-
SQLALCHEMY_AVAILABLE = False
|
10
|
-
try:
|
11
|
-
spec = importlib.util.find_spec("sqlalchemy")
|
12
|
-
SQLALCHEMY_AVAILABLE = spec is not None
|
13
|
-
if SQLALCHEMY_AVAILABLE:
|
14
|
-
from sqlalchemy import create_engine, text
|
15
|
-
from sqlalchemy.exc import SQLAlchemyError
|
16
|
-
except ImportError:
|
17
|
-
pass
|
6
|
+
from sqlalchemy import create_engine, text
|
7
|
+
from sqlalchemy.exc import SQLAlchemyError
|
18
8
|
|
19
9
|
from quantalogic.tools.tool import Tool, ToolArgument
|
20
10
|
|
@@ -73,13 +63,7 @@ class SQLQueryTool(Tool):
|
|
73
63
|
Raises:
|
74
64
|
ValueError: For invalid parameters or query errors
|
75
65
|
RuntimeError: For database connection issues
|
76
|
-
ImportError: When sqlalchemy is not available
|
77
66
|
"""
|
78
|
-
# Check if required dependencies are available
|
79
|
-
if not SQLALCHEMY_AVAILABLE:
|
80
|
-
raise ImportError("The 'sqlalchemy' package is required to use SQLQueryTool. "
|
81
|
-
"Install it with 'pip install sqlalchemy' or include it in your dependencies.")
|
82
|
-
|
83
67
|
try:
|
84
68
|
# Convert and validate row numbers
|
85
69
|
start = self._convert_row_number(start_row, "start_row")
|
@@ -121,13 +105,12 @@ class SQLQueryTool(Tool):
|
|
121
105
|
|
122
106
|
return "\n".join(markdown)
|
123
107
|
|
108
|
+
except SQLAlchemyError as e:
|
109
|
+
raise ValueError(f"SQL Error: {str(e)}") from e
|
110
|
+
except ValidationError as e:
|
111
|
+
raise ValueError(f"Validation Error: {str(e)}") from e
|
124
112
|
except Exception as e:
|
125
|
-
|
126
|
-
raise ValueError(f"SQL Error: {str(e)}") from e
|
127
|
-
elif isinstance(e, ValidationError):
|
128
|
-
raise ValueError(f"Validation Error: {str(e)}") from e
|
129
|
-
else:
|
130
|
-
raise RuntimeError(f"Database Error: {str(e)}") from e
|
113
|
+
raise RuntimeError(f"Database Error: {str(e)}") from e
|
131
114
|
|
132
115
|
def _convert_row_number(self, value: Any, field_name: str) -> int:
|
133
116
|
"""Convert and validate row number input."""
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"""
|
2
|
+
Utilities Tools Module
|
3
|
+
|
4
|
+
This module provides general utility tools and helper functions.
|
5
|
+
"""
|
6
|
+
|
7
|
+
from loguru import logger
|
8
|
+
|
9
|
+
# Explicit imports of all tools in the module
|
10
|
+
from .csv_processor_tool import CSVProcessorTool
|
11
|
+
from .download_file_tool import PrepareDownloadTool
|
12
|
+
from .mermaid_validator_tool import MermaidValidatorTool
|
13
|
+
|
14
|
+
# Define __all__ to control what is imported with `from ... import *`
|
15
|
+
__all__ = [
|
16
|
+
'CSVProcessorTool',
|
17
|
+
'PrepareDownloadTool',
|
18
|
+
'MermaidValidatorTool',
|
19
|
+
]
|
20
|
+
|
21
|
+
# Optional: Add logging for import confirmation
|
22
|
+
logger.info("Utilities tools module initialized successfully.")
|
@@ -1,62 +1,12 @@
|
|
1
|
-
import importlib.util
|
2
1
|
import random
|
3
2
|
from datetime import datetime, timedelta
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
except ImportError:
|
12
|
-
pass
|
13
|
-
|
14
|
-
# Check if sqlalchemy is available
|
15
|
-
SQLALCHEMY_AVAILABLE = False
|
16
|
-
try:
|
17
|
-
spec = importlib.util.find_spec("sqlalchemy")
|
18
|
-
SQLALCHEMY_AVAILABLE = spec is not None
|
19
|
-
except ImportError:
|
20
|
-
pass
|
21
|
-
|
22
|
-
# Only import if available
|
23
|
-
if FAKER_AVAILABLE:
|
24
|
-
from faker import Faker
|
25
|
-
else:
|
26
|
-
# Create a dummy Faker class
|
27
|
-
class Faker:
|
28
|
-
def __init__(self):
|
29
|
-
pass
|
30
|
-
|
31
|
-
def name(self) -> str:
|
32
|
-
return "Sample Name"
|
33
|
-
|
34
|
-
def email(self) -> str:
|
35
|
-
return "sample@example.com"
|
36
|
-
|
37
|
-
def street_address(self) -> str:
|
38
|
-
return "123 Sample St"
|
39
|
-
|
40
|
-
def city(self) -> str:
|
41
|
-
return "Sample City"
|
42
|
-
|
43
|
-
def word(self) -> str:
|
44
|
-
return "sample"
|
45
|
-
|
46
|
-
def date_between(self, start_date: datetime) -> datetime:
|
47
|
-
return start_date + timedelta(days=random.randint(1, 365))
|
48
|
-
|
49
|
-
if SQLALCHEMY_AVAILABLE:
|
50
|
-
from sqlalchemy import Column, Date, Float, ForeignKey, Integer, String, create_engine
|
51
|
-
from sqlalchemy.orm import declarative_base, relationship, sessionmaker
|
52
|
-
|
53
|
-
# Initialize these only if the required modules are available
|
54
|
-
Base = None
|
55
|
-
fake = None
|
56
|
-
if SQLALCHEMY_AVAILABLE:
|
57
|
-
Base = declarative_base()
|
58
|
-
if FAKER_AVAILABLE:
|
59
|
-
fake = Faker()
|
3
|
+
|
4
|
+
from faker import Faker
|
5
|
+
from sqlalchemy import Column, Date, Float, ForeignKey, Integer, String, create_engine
|
6
|
+
from sqlalchemy.orm import declarative_base, relationship, sessionmaker
|
7
|
+
|
8
|
+
Base = declarative_base()
|
9
|
+
fake = Faker()
|
60
10
|
|
61
11
|
|
62
12
|
def create_sample_database(db_path: str) -> None:
|
@@ -66,13 +16,6 @@ def create_sample_database(db_path: str) -> None:
|
|
66
16
|
Args:
|
67
17
|
db_path: Path to the SQLite database file (e.g., 'sample.db')
|
68
18
|
"""
|
69
|
-
# Check if required dependencies are available
|
70
|
-
if not SQLALCHEMY_AVAILABLE:
|
71
|
-
raise ImportError("The 'sqlalchemy' package is required to use create_sample_database. "
|
72
|
-
"Install it with 'pip install sqlalchemy' or include it in your dependencies.")
|
73
|
-
if not FAKER_AVAILABLE:
|
74
|
-
raise ImportError("The 'faker' package is required to use create_sample_database. "
|
75
|
-
"Install it with 'pip install faker' or include it in your dependencies.")
|
76
19
|
|
77
20
|
# Define database schema
|
78
21
|
class Customer(Base):
|
@@ -1,15 +1,10 @@
|
|
1
|
-
import importlib.util
|
2
1
|
from datetime import UTC, datetime
|
3
|
-
from typing import
|
2
|
+
from typing import Dict, List
|
4
3
|
|
5
|
-
|
4
|
+
import networkx as nx
|
6
5
|
from sqlalchemy import create_engine, inspect, text
|
7
6
|
from sqlalchemy.engine import Inspector
|
8
|
-
import networkx as nx
|
9
7
|
|
10
|
-
# Type checking imports
|
11
|
-
if TYPE_CHECKING:
|
12
|
-
pass # No need for dummy types now
|
13
8
|
|
14
9
|
def generate_database_report(connection_string: str) -> str:
|
15
10
|
"""
|
@@ -1,11 +1,12 @@
|
|
1
1
|
quantalogic/__init__.py,sha256=TWC4r1-av6ZZ2RdZ4FBU0oPYZQVPOv0p6gmEey1e4lQ,776
|
2
2
|
quantalogic/agent.py,sha256=1sZfPmQGLG6sJKoeVp59JN666anywVRWkZk4xZT4160,43298
|
3
|
-
quantalogic/agent_config.py,sha256=
|
4
|
-
quantalogic/agent_factory.py,sha256=
|
5
|
-
quantalogic/coding_agent.py,sha256=
|
3
|
+
quantalogic/agent_config.py,sha256=fPyMfm77BzimyfyFkTzb2ZdyZtGlr2fq5aTRETu77Vs,8202
|
4
|
+
quantalogic/agent_factory.py,sha256=LO0qsFtHxU7lcEi8dn-nDHhkh6Dl8Is6sP_3f1ap_Vg,6251
|
5
|
+
quantalogic/coding_agent.py,sha256=A-firiPWQjMC56B329Ne606_v2GsoF5-nxcuz3rVbYM,5496
|
6
6
|
quantalogic/config.py,sha256=lsJxfWFWEMqS2Asus8z4A3W7X8JWoMi3-VHxfltvSfA,423
|
7
7
|
quantalogic/console_print_events.py,sha256=yDtfOr7s5r_gLTgwkl_XoKSkUqNRZhqqq4hwR_oJsUw,2050
|
8
8
|
quantalogic/console_print_token.py,sha256=5IRVoPhwWZtSc4LpNoAsCQhCB_RnAW9chycGgyD3_5U,437
|
9
|
+
quantalogic/create_custom_agent.py,sha256=4CoaJaGVQcQrJR3BMUqee3HG2K3LwxEMK-kfg1ZhU64,11306
|
9
10
|
quantalogic/docs_cli.py,sha256=Ie6NwKQuxLKwVQ-cjhFMCttXeiHDjGhNY4hSmMtc0Qg,1664
|
10
11
|
quantalogic/event_emitter.py,sha256=e_1r6hvx5GmW84iuRkoqcjpjRiYHBk4hzujd5ZoUC6U,16777
|
11
12
|
quantalogic/flow/__init__.py,sha256=asLVwbDH6zVFhILschBOuZZWyKvMGdqhQbB1rd2RXHo,590
|
@@ -38,11 +39,14 @@ quantalogic/server/templates/index.html,sha256=nDnXJoQEm1vXbhXtgaYk0G5VXj0wwzE6K
|
|
38
39
|
quantalogic/task_file_reader.py,sha256=oPcB4vTxJ__Y8o7VVABIPOkVw3tGDMdQYwdK27PERlE,1440
|
39
40
|
quantalogic/task_runner.py,sha256=c2QVGKZfHA0wZIBUvehpjMvtRaKZuhuYQerjIiCC9iY,10053
|
40
41
|
quantalogic/tool_manager.py,sha256=vNA7aBKgdU3wpw_goom6i9rg_64pNZapNxvg4cUhhCI,6983
|
41
|
-
quantalogic/tools/__init__.py,sha256=
|
42
|
+
quantalogic/tools/__init__.py,sha256=Or16PxUOorK_HakXLokCikaWgOCQ6Y-rn3GEeI3R6WI,2268
|
42
43
|
quantalogic/tools/agent_tool.py,sha256=MXCXxWHRch7VK4UWhtRP1jeI8Np9Ne2CUGo8vm1oZiM,3064
|
43
|
-
quantalogic/tools/composio/
|
44
|
+
quantalogic/tools/composio/__init__.py,sha256=Yo9ygNx0qQILVhIfRgqpO8fgnCgp5WoZMd3Hm5D20GY,429
|
45
|
+
quantalogic/tools/composio/composio.py,sha256=icVHA_Scr1pViBhahGGBGBRBl9JSB3hGSqpgQzAIUH8,17627
|
46
|
+
quantalogic/tools/database/__init__.py,sha256=SDpDw3c0U_Z-dTXkSt-Hzjv7zOD5WMyyPhx_nJaZHIM,551
|
44
47
|
quantalogic/tools/database/generate_database_report_tool.py,sha256=lGgER2VuHqnxliPM806tbwJh7WRW9HJcbBLL7QMvVBQ,1861
|
45
|
-
quantalogic/tools/database/sql_query_tool_advanced.py,sha256=
|
48
|
+
quantalogic/tools/database/sql_query_tool_advanced.py,sha256=JZrz7NJghAnbPZ4TKNJFaAlkL6BRgQbN19rSQELoVy4,9425
|
49
|
+
quantalogic/tools/document_tools/__init__.py,sha256=p_bwI3J17wYlVfQEOZ9sLFEtHTeiDleuCsSZk0K8e-k,945
|
46
50
|
quantalogic/tools/document_tools/markdown_to_docx_tool.py,sha256=r5AOyQfpcDoqQ6_g2uYyVjTEPtfeNn4mDmmefNZmJyM,22553
|
47
51
|
quantalogic/tools/document_tools/markdown_to_epub_tool.py,sha256=iFIUTty7bIuOV7nbSfCuzBvOWJBmSP1TBFxf74184X4,14031
|
48
52
|
quantalogic/tools/document_tools/markdown_to_html_tool.py,sha256=ngwU3RAj05Ghua2yqmpkpws09XYfjDpcg4MuONHNvO8,12030
|
@@ -55,6 +59,7 @@ quantalogic/tools/duckduckgo_search_tool.py,sha256=oY-aW7zbo1f39DmjwGfaXVxXRi3pK
|
|
55
59
|
quantalogic/tools/edit_whole_content_tool.py,sha256=nXmpAvojvqvAcqNMy1kUKZ1ocboky_ZcnCR4SNCSPgw,2360
|
56
60
|
quantalogic/tools/elixir_tool.py,sha256=fzPPtAW-Koy9KB0r5k2zV1f1U0WphL-LXPPOBkeNkug,7652
|
57
61
|
quantalogic/tools/execute_bash_command_tool.py,sha256=YK_cMuODJDOYheZKGmlpZTxJdVbimFLCUlND2_zmyMg,6869
|
62
|
+
quantalogic/tools/finance/__init__.py,sha256=b_RMQw6fHr9Rsptk0M3AUrXgewhC1kJa8v59FP5zNpc,933
|
58
63
|
quantalogic/tools/finance/alpha_vantage_tool.py,sha256=2nAOTGlxKePM2VnBOtDTfHJH4WgM8ys81WDGV2SDIgo,16526
|
59
64
|
quantalogic/tools/finance/ccxt_tool.py,sha256=kCLrAzy-Zc0Bz7Ey8Jdi9RhyaQp6L7d2Q3Mnu_lPueU,15411
|
60
65
|
quantalogic/tools/finance/finance_llm_tool.py,sha256=1_lBkYCSfzNPUpHn5P2sWh3D6vGYQk1UD_dTl1naT0U,15564
|
@@ -63,12 +68,15 @@ quantalogic/tools/finance/market_intelligence_tool.py,sha256=dPHOFZ18-AwVSuwkOKA
|
|
63
68
|
quantalogic/tools/finance/technical_analysis_tool.py,sha256=n7opf4wP8ty2EystqISfXPN89YFi0n_nguaNgaQb0To,18497
|
64
69
|
quantalogic/tools/finance/tradingview_tool.py,sha256=n4JMFkZ5tdqhT9DGPUNgb1KPOTytYoPBvUhKd7hDczc,13629
|
65
70
|
quantalogic/tools/finance/yahoo_finance.py,sha256=xzH5Rikp_KXzcyVuXlZSty0PPO-pflp3mgfZn9bR-yY,9487
|
71
|
+
quantalogic/tools/git/__init__.py,sha256=ZMyBfreOU2OIC23yli1z4wbBOpkTDzRGDEIvmfdGTZc,678
|
66
72
|
quantalogic/tools/git/bitbucket_clone_repo_tool.py,sha256=Vy3J802f7gPGrnbZhfWHN1Jb36gNNxuJ71k3VI2sZ-Q,7491
|
67
73
|
quantalogic/tools/git/bitbucket_operations_tool.py,sha256=6Vdelau1VSTYREtuQgHlV-t6Te-RuQKA6oCuLUkDDcc,11802
|
68
74
|
quantalogic/tools/git/clone_repo_tool.py,sha256=FA_29pmEsy_71YSrt94M0rAUNt_rEo4TDvq2Y7-uinU,7565
|
69
75
|
quantalogic/tools/git/git_operations_tool.py,sha256=tZqY7fXXfiLkArV_18pEmqreqF6n6BALo0jFy4Hjzfs,20610
|
76
|
+
quantalogic/tools/google_packages/__init__.py,sha256=BIf2t1oJQTCfbh7qZZAzQGIHVQyWiZQ559OwmYrG1A0,452
|
70
77
|
quantalogic/tools/google_packages/google_news_tool.py,sha256=BdrSlBxCZ1PfWIKzl7_aqvkoV2wVkBH3T2g3X2VBvVQ,17443
|
71
78
|
quantalogic/tools/grep_app_tool.py,sha256=qAKgqMTtoH82bEZkiNlIk5oDSgVckFgxVXhU7ieTJwc,18672
|
79
|
+
quantalogic/tools/image_generation/__init__.py,sha256=7_ckDTy0ZHW34S9ZIQJqeRCZisdBbAtH-1CLO-8_yUI,455
|
72
80
|
quantalogic/tools/image_generation/dalle_e.py,sha256=SYvKZ1VbdslIKUKBy3nC0jD680-ujabBQr6iK5IFAXY,10968
|
73
81
|
quantalogic/tools/input_question_tool.py,sha256=UoTlNhdmdr-eyiVtVCG2qJe_R4bU_ag-DzstSdmYkvM,1848
|
74
82
|
quantalogic/tools/jinja_tool.py,sha256=i49F6lSdTx5KMgP5Y9KKYprcc_OEc11TvEqqtDA5mas,2849
|
@@ -86,16 +94,19 @@ quantalogic/tools/list_directory_tool.py,sha256=OGgori1d2EEU_0HMA_YH_0dn23M4Trp3
|
|
86
94
|
quantalogic/tools/llm_tool.py,sha256=8HOdYqHNuwIYxEYT-QWGQWWnf7iT-YoXnz5T1reFPGg,8440
|
87
95
|
quantalogic/tools/llm_vision_tool.py,sha256=u-Yd5IIeW9Aw7mUqU2wZ5tQcRtDt_tTLJZzdlZJPfnE,7724
|
88
96
|
quantalogic/tools/markitdown_tool.py,sha256=KHvazxp6zT7h6-qMCdfuH_9pHQ6rDQOI3yiGIabTSCU,4804
|
97
|
+
quantalogic/tools/nasa_packages/__init__.py,sha256=DcVxMEleYqbQhSdixPQQlyjVmmZe_554hG2DcHpmdso,504
|
89
98
|
quantalogic/tools/nasa_packages/models.py,sha256=qydZqUL5Vyl1XZbTYhP34RbccrrCpVKQxtTd1m5PhZs,1767
|
90
99
|
quantalogic/tools/nasa_packages/nasa_apod_tool.py,sha256=t8V3nklLpRkShd27OHN0nF4RtjNEM0qC4jrDch2TgEI,7460
|
91
100
|
quantalogic/tools/nasa_packages/nasa_neows_tool.py,sha256=RBfysLwddoNZyNPhEtp6AsLECR2pIKj5pOjUbBbhCWo,4949
|
92
101
|
quantalogic/tools/nasa_packages/services.py,sha256=fifGphF99QwjJo-z2RhF3xxFRQGNoufyKNYHQY-qYvA,2882
|
93
102
|
quantalogic/tools/nodejs_tool.py,sha256=zdnE0VFj_5786uR2L0o-SKR0Gk8L-U7rdj7xGHJYIq0,19905
|
103
|
+
quantalogic/tools/presentation_tools/__init__.py,sha256=MoVqoUc211ljGPG4m27K07q2m3AniZ4Y98F-pLbku-M,474
|
94
104
|
quantalogic/tools/presentation_tools/presentation_llm_tool.py,sha256=5fuUDE1IzeAAoWFKG5lyYt2uAo7UzwdrOxnEKfvJDJY,15782
|
105
|
+
quantalogic/tools/product_hunt/__init__.py,sha256=v729REf13ioQNg4SH6ZTkAMo5TfgAawcUEIz1sKwIcA,446
|
95
106
|
quantalogic/tools/product_hunt/product_hunt_tool.py,sha256=vtjnV6v46BcNYlxudUCq5JIkjznQFUt8Kx9VD4KEPa8,8533
|
96
107
|
quantalogic/tools/product_hunt/services.py,sha256=ym10ZW4q8w03wIkZDnwl9d_nCoOz2WAj3N6C0qY0dfI,2280
|
97
108
|
quantalogic/tools/python_tool.py,sha256=70HLbfU2clOBgj4axDOtIKzXwEBMNGEAX1nGSf-KNNQ,18156
|
98
|
-
quantalogic/tools/rag_tool/__init__.py,sha256=
|
109
|
+
quantalogic/tools/rag_tool/__init__.py,sha256=Yb_TSapUHvgvwvUYThiGTPhB5qaM-NM65oFu_O_NygA,629
|
99
110
|
quantalogic/tools/rag_tool/document_metadata.py,sha256=amnnqL5POzFbc7rVq2kJ2egYS3k5P-m4HyA5AbekIq0,376
|
100
111
|
quantalogic/tools/rag_tool/query_response.py,sha256=0T9N80kNR8ZgjA7WzFBisIqdIgUiFfGeUPzYvxAHSU0,549
|
101
112
|
quantalogic/tools/rag_tool/rag_tool.py,sha256=FEccrd_IorVi1b3FzEu2huZPavSlaF-0p0IiWIGON74,21073
|
@@ -109,16 +120,17 @@ quantalogic/tools/safe_python_interpreter_tool.py,sha256=yibIVmtkcfU4dS6KNcbJPxE
|
|
109
120
|
quantalogic/tools/search_definition_names.py,sha256=zqtaqq8aS5jdDQOkbd4wMUPFyL6Bq-4q9NWyLKdXL1E,18771
|
110
121
|
quantalogic/tools/sequence_tool.py,sha256=Hb2FSjWWACvXZX7rmJXPk5lnnnqaDeRTbhQQRtCd8hI,11169
|
111
122
|
quantalogic/tools/serpapi_search_tool.py,sha256=sX-Noch77kGP2XiwislPNFyy3_4TH6TwMK6C81L3q9Y,5316
|
112
|
-
quantalogic/tools/sql_query_tool.py,sha256=
|
123
|
+
quantalogic/tools/sql_query_tool.py,sha256=jEDZLlxOsB2bzsWlEqsqvTKiyovnRuk0XvgtwW7-WSQ,6055
|
113
124
|
quantalogic/tools/task_complete_tool.py,sha256=L8tuyVoN07Q2hOsxx17JTW0C5Jd_N-C0i_0PtCUQUKU,929
|
114
125
|
quantalogic/tools/tool.py,sha256=2XlveQf7NVuDlPz-IgE0gURye8rIp9iH3YhWhoOsnog,11232
|
115
126
|
quantalogic/tools/unified_diff_tool.py,sha256=o7OiYnCM5MjbPlQTpB2OmkMQRI9zjdToQmgVkhiTvOI,14148
|
127
|
+
quantalogic/tools/utilities/__init__.py,sha256=M54fNYmXlTzG-nTnBVQamxSCuu8X4WzRM4bQQ-NvIC4,606
|
116
128
|
quantalogic/tools/utilities/csv_processor_tool.py,sha256=Mu_EPVj6iYAclNaVX_vbkekxcNwPYwy7dW1SCY22EwY,9023
|
117
129
|
quantalogic/tools/utilities/download_file_tool.py,sha256=hw_tO6RD0tA_LH46Tathf-LzSxRl7kgEiiP76rTGdds,6616
|
118
130
|
quantalogic/tools/utilities/mermaid_validator_tool.py,sha256=Brd6pt8OxpUgf8dm6kHqJJs_IU8V4Kc-8VDP-n1eCUM,25886
|
119
131
|
quantalogic/tools/utils/__init__.py,sha256=-NtMSwxRt_G79Oo_DcDaCdLU2vLvuXIoCd34TOYEUmI,334
|
120
|
-
quantalogic/tools/utils/create_sample_database.py,sha256=
|
121
|
-
quantalogic/tools/utils/generate_database_report.py,sha256=
|
132
|
+
quantalogic/tools/utils/create_sample_database.py,sha256=h5c_uxv3eztQvHlloTZxzWt5gEzai8zfnR8-_QrUqxU,3724
|
133
|
+
quantalogic/tools/utils/generate_database_report.py,sha256=3PT34ClMvZ2O62-24cp_5lOyZHY_pBjVObMHpfyVi-s,10140
|
122
134
|
quantalogic/tools/wikipedia_search_tool.py,sha256=LXQSPH8961Efw2QNxKe-cD5ZiIYD3ufEgrxH4y5uB74,5180
|
123
135
|
quantalogic/tools/write_file_tool.py,sha256=_mx9_Zjg2oMAAVzlcHEKjZVZUxQVgbRfcoMKgWnoZcg,3764
|
124
136
|
quantalogic/utils/__init__.py,sha256=hsS3hXH5lsBQcZh2QBANY1Af2Zs1jtrgxA7kXJEWi58,680
|
@@ -141,8 +153,8 @@ quantalogic/version_check.py,sha256=JyQFTNMDWtpHCLnN-BiakzB2cyXf6kUFsTjvmSruZi4,
|
|
141
153
|
quantalogic/welcome_message.py,sha256=o4tHdgabNuIV9kbIDPgS3_2yzJhayK30oKad2UouYDc,3020
|
142
154
|
quantalogic/xml_parser.py,sha256=AKuMdJC3QAX3Z_tErHVlZ-msjPemWaZUFiTwkHz76jg,11614
|
143
155
|
quantalogic/xml_tool_parser.py,sha256=Vz4LEgDbelJynD1siLOVkJ3gLlfHsUk65_gCwbYJyGc,3784
|
144
|
-
quantalogic-0.50.
|
145
|
-
quantalogic-0.50.
|
146
|
-
quantalogic-0.50.
|
147
|
-
quantalogic-0.50.
|
148
|
-
quantalogic-0.50.
|
156
|
+
quantalogic-0.50.17.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
157
|
+
quantalogic-0.50.17.dist-info/METADATA,sha256=ItT2BBkDE6-Dpy5XHGhFBadlkFfW2WSpE9F6F14O5sI,22961
|
158
|
+
quantalogic-0.50.17.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
159
|
+
quantalogic-0.50.17.dist-info/entry_points.txt,sha256=h74O_Q3qBRCrDR99qvwB4BpBGzASPUIjCfxHq6Qnups,183
|
160
|
+
quantalogic-0.50.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|