amsdal_ml 0.2.0__tar.gz → 0.2.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.
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/PKG-INFO +3 -3
- amsdal_ml-0.2.1/amsdal_ml/__about__.py +1 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/change-logs.md +8 -0
- amsdal_ml-0.2.1/latest-changelogs.md +7 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/pyproject.toml +2 -2
- amsdal_ml-0.2.0/amsdal_ml/__about__.py +0 -1
- amsdal_ml-0.2.0/latest-changelogs.md +0 -14
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/.amsdal/.dependencies +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/.amsdal/.environment +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/.amsdal/.secrets +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/.amsdal-cli +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/.github/workflows/ci.yml +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/.github/workflows/release.yml +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/.github/workflows/tag_check.yml +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/.gitignore +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/CLAUDE.md +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/README.md +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/RELEASE.md +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/Third-Party Materials - AMSDAL Dependencies - License Notices.md +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/agents/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/agents/agent.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/agents/default_qa_agent.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/agents/functional_calling_agent.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/agents/mcp_client_tool.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/agents/python_tool.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/agents/retriever_tool.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/agents/tool_adapters.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/app.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/fileio/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/fileio/base_loader.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/fileio/openai_loader.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/mcp_client/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/mcp_client/base.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/mcp_client/http_client.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/mcp_client/stdio_client.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/mcp_server/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/mcp_server/server_retriever_stdio.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/migrations/0000_initial.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_config.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/default_ingesting.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/embedders/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/embedders/embedder.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/embedders/openai_embedder.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/embedding_data.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/ingesting.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/loaders/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/loaders/folder_loader.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/loaders/loader.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/loaders/pdf_loader.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/loaders/text_loader.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/model_ingester.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/openai_ingesting.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/pipeline.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/pipeline_interface.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/processors/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/processors/cleaner.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/processors/text_cleaner.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/splitters/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/splitters/splitter.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/splitters/token_splitter.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/stores/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/stores/embedding_data.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/stores/store.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_ingesting/types.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_models/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_models/models.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_models/openai_model.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_models/utils.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_retrievers/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_retrievers/adapters.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_retrievers/default_retriever.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_retrievers/openai_retriever.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_retrievers/query_retriever.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/ml_retrievers/retriever.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/models/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/models/embedding_model.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/prompts/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/prompts/database_query_agent.prompt +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/prompts/functional_calling_agent_base.prompt +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/prompts/nl_query_filter.prompt +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/prompts/react_chat.prompt +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/py.typed +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/utils/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/amsdal_ml/utils/query_utils.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/config.yml +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/docker-compose.tests.yml +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/license_check.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/scripts/release.sh +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/scripts/tag_check.sh +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/agents_tests/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/agents_tests/test_arun.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/agents_tests/test_astream.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/agents_tests/test_astream_final_only.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/agents_tests/test_fakes.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/agents_tests/test_functional_calling_agent.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/agents_tests/test_qa_agent_with_nlq_tool.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/agents_tests/test_tool_call_arguments_async.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/conftest.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/fixtures/models/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/fixtures/models/author.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/fixtures/models/book.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/fixtures/models/category.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/fixtures/models/order.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/fixtures/models/product.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/fixtures/models/user.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/fixtures/models/vehicle.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/ingesting/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/ingesting/test_folder_loader_and_rag.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/ingesting/test_ingestion_components.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/ingesting/test_model_ingester.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/mock_tests/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/mock_tests/test_retriever_mock.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/models_tests/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/models_tests/test_nl_query_models.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/schema_tests/__init__.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/schema_tests/test_comprehensive_schema.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/schema_tests/test_nested_list_skipping.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/test_files/.gitkeep +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/test_files/pdf/Aspida.pdf +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/test_files/pdf/Nassau.pdf +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/test_openai_model.py +0 -0
- {amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: amsdal_ml
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: amsdal_ml plugin for AMSDAL Framework
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Requires-Dist: aiohttp==3.12.15
|
|
@@ -11,8 +11,8 @@ Requires-Dist: amsdal-utils>=0.5.4
|
|
|
11
11
|
Requires-Dist: amsdal>=0.5.6
|
|
12
12
|
Requires-Dist: mcp>=0.1
|
|
13
13
|
Requires-Dist: openai==1.100.2
|
|
14
|
-
Requires-Dist: pydantic-settings
|
|
15
|
-
Requires-Dist: pydantic
|
|
14
|
+
Requires-Dist: pydantic-settings~=2.12
|
|
15
|
+
Requires-Dist: pydantic~=2.12
|
|
16
16
|
Requires-Dist: pymupdf>=1.24.10
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.2.1'
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [v0.2.1](https://pypi.org/project/amsdal_ml/0.2.1/) - 2025-12-23
|
|
2
|
+
|
|
3
|
+
### New Features
|
|
4
|
+
|
|
5
|
+
- Upgraded dependencies:
|
|
6
|
+
"pydantic~=2.12",
|
|
7
|
+
"pydantic-settings~=2.12",
|
|
8
|
+
|
|
1
9
|
## [v0.2.0](https://pypi.org/project/amsdal_ml/0.2.0/) - 2025-12-16
|
|
2
10
|
|
|
3
11
|
### New Features
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '0.2.0'
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
## [v0.2.0](https://pypi.org/project/amsdal_ml/0.2.0/) - 2025-12-16
|
|
2
|
-
|
|
3
|
-
### New Features
|
|
4
|
-
|
|
5
|
-
- Added `PythonTool`: Tool for executing Python functions within agents
|
|
6
|
-
- Added `FunctionalCallingAgent`: Agent specialized in functional calling with configurable tools
|
|
7
|
-
- Added `NLQueryRetriever`: Retriever for natural language queries on AMSDAL querysets
|
|
8
|
-
- Added `DefaultIngestionPipeline`: Pipeline for document ingestion including loader, cleaner, splitter, embedder, and store
|
|
9
|
-
- Added `ModelIngester`: High-level ingester for processing models with customizable pipelines and metadata
|
|
10
|
-
- Added `PdfLoader`: Document loader using pymupdf for PDF processing
|
|
11
|
-
- Added `TextCleaner`: Processor for cleaning and normalizing text
|
|
12
|
-
- Added `TokenSplitter`: Splitter for dividing text into chunks based on token count
|
|
13
|
-
- Added `OpenAIEmbedder`: Embedder for generating embeddings via OpenAI API
|
|
14
|
-
- Added `EmbeddingDataStore`: Store for saving embedding data linked to source objects
|
|
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
|
|
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
|
{amsdal_ml-0.2.0 → amsdal_ml-0.2.1}/tests/nlqueryretriever_tests/mock_tests/test_retriever_mock.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
|