cwyodmodules 0.3.33__tar.gz → 0.3.35__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.
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/PKG-INFO +2 -2
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/secret_helper.py +3 -7
- cwyodmodules-0.3.35/cwyodmodules/logging_config.py +25 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules.egg-info/PKG-INFO +2 -2
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules.egg-info/requires.txt +1 -1
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/pyproject.toml +2 -2
- cwyodmodules-0.3.33/cwyodmodules/logging_config.py +0 -15
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/LICENSE +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/README.md +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/api/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/api/chat_history.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/auth_utils.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/cosmosdb.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/database_client_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/database_factory.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/postgresdbservice.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/sample_user.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/common/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/common/answer.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/common/source_document.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/chunking_strategy.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/document_chunking_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/fixed_size_overlap.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/layout.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/page.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/paragraph.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/strategies.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/document_loading_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/layout.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/read.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/strategies.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/web.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/word_document.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/azure_blob_storage_client.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/azure_computer_vision_client.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/azure_form_recognizer_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/azure_identity_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/azure_postgres_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/azure_postgres_helper_light_rag.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/azure_search_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/assistant_strategy.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/config_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/conversation_flow.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/database_type.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/default.json +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/default_contract_assistant_prompt.txt +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/default_employee_assistant_prompt.txt +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/embedding_config.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/document_chunking_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/document_loading_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/embedders/embedder_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/embedders/embedder_factory.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/embedders/integrated_vectorization_embedder.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/embedders/postgres_embedder.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/embedders/push_embedder.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/env_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/lightrag_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/llm_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/orchestrator_helper.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/integrated_vectorization/azure_search_datasource.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/integrated_vectorization/azure_search_index.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/integrated_vectorization/azure_search_indexer.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/integrated_vectorization/azure_search_skillset.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/loggers/conversation_logger.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/lang_chain_agent.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/open_ai_functions.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/orchestration_strategy.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/orchestrator_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/prompt_flow.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/semantic_kernel_orchestrator.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/strategies.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/parser/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/parser/output_parser_tool.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/parser/parser_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/plugins/chat_plugin.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/plugins/outlook_calendar_plugin.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/plugins/post_answering_plugin.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/search/azure_search_handler.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/search/azure_search_handler_light_rag.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/search/integrated_vectorization_search_handler.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/search/lightrag_search_handler.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/search/postgres_search_handler.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/search/postgres_search_handler_light_rag.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/search/search.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/search/search_handler_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/tools/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/tools/answer_processing_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/tools/answering_tool_base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/tools/content_safety_checker.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/tools/post_prompt_tool.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/tools/question_answer_tool.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/tools/text_processing_tool.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/config.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/database/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/database/base.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/database/models.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/indexing/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/indexing/chunking.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/indexing/extraction.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/indexing/types.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/indexing/upsert.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/indexing/utils.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/llm/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/llm/llm.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/llm/prompt.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/main.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/query/__init__.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/query/generate.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/query/graph_search.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/query/types.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/graphrag/query/vector_search.py +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules.egg-info/SOURCES.txt +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules.egg-info/dependency_links.txt +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules.egg-info/top_level.txt +0 -0
- {cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cwyodmodules
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.35
|
4
4
|
Summary: Add your description here
|
5
5
|
Author-email: Patrik <patrikhartl@gmail.com>
|
6
6
|
Classifier: Operating System :: OS Independent
|
@@ -40,7 +40,7 @@ Requires-Dist: azure-search-documents==11.6.0b4
|
|
40
40
|
Requires-Dist: semantic-kernel==1.3.0
|
41
41
|
Requires-Dist: pydantic==2.7.4
|
42
42
|
Requires-Dist: pandas>=2.2.3
|
43
|
-
Requires-Dist: azpaddypy>=0.2.
|
43
|
+
Requires-Dist: azpaddypy>=0.2.7
|
44
44
|
Dynamic: license-file
|
45
45
|
|
46
46
|
# paddypy
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/secret_helper.py
RENAMED
@@ -1,11 +1,7 @@
|
|
1
1
|
from ..helpers.azure_identity_helper import AzureIdentityHelper
|
2
2
|
from azure.keyvault.secrets import SecretClient
|
3
3
|
|
4
|
-
from ...utilities.helpers.env_helper import EnvHelper
|
5
4
|
from logging_config import logger
|
6
|
-
env_helper: EnvHelper = EnvHelper()
|
7
|
-
log_args = env_helper.LOG_ARGS
|
8
|
-
log_result = env_helper.LOG_RESULT
|
9
5
|
|
10
6
|
|
11
7
|
class SecretHelper:
|
@@ -34,7 +30,7 @@ class SecretHelper:
|
|
34
30
|
connection_verify=True,
|
35
31
|
)
|
36
32
|
|
37
|
-
@logger.trace_function(log_args=
|
33
|
+
@logger.trace_function(log_args=False, log_result=False)
|
38
34
|
def get_secret(self, secret_name: str) -> str:
|
39
35
|
"""
|
40
36
|
Retrieves the value of a secret from the environment variables or Azure Key Vault.
|
@@ -52,7 +48,7 @@ class SecretHelper:
|
|
52
48
|
secret_value = self.secret_client.get_secret(name=secret_name).value
|
53
49
|
return secret_value
|
54
50
|
|
55
|
-
@logger.trace_function(log_args=
|
51
|
+
@logger.trace_function(log_args=False, log_result=False)
|
56
52
|
def set_secret(self, secret_name: str, secret_value: str) -> None:
|
57
53
|
"""
|
58
54
|
Sets the value of a secret in Azure Key Vault only if it doesn't exist or has a different value.
|
@@ -80,7 +76,7 @@ class SecretHelper:
|
|
80
76
|
logger.warning(f"Secret {secret_name} has been created")
|
81
77
|
|
82
78
|
|
83
|
-
@logger.trace_function(log_args=
|
79
|
+
@logger.trace_function(log_args=False, log_result=False)
|
84
80
|
def get_secret_from_json(self, secret_name: str) -> str:
|
85
81
|
secret_value = self.secret_client.get_secret(secret_name).value
|
86
82
|
return secret_value
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import os
|
2
|
+
from azpaddypy.mgmt.logging import create_app_logger
|
3
|
+
|
4
|
+
application_insights_connection_string=os.getenv("APPLICATIONINSIGHTS_CONNECTION_STRING")
|
5
|
+
instrumentation_options={
|
6
|
+
"azure_sdk": {"enabled": True},
|
7
|
+
"django": {"enabled": False},
|
8
|
+
"fastapi": {"enabled": False},
|
9
|
+
"flask": {"enabled": True},
|
10
|
+
"psycopg2": {"enabled": True},
|
11
|
+
"requests": {"enabled": True},
|
12
|
+
"urllib": {"enabled": True},
|
13
|
+
"urllib3": {"enabled": True},
|
14
|
+
}
|
15
|
+
# Create a single instance of the logger
|
16
|
+
logger = create_app_logger(
|
17
|
+
connection_string=application_insights_connection_string,
|
18
|
+
service_name=__name__,
|
19
|
+
service_version="1.0.0",
|
20
|
+
enable_console_logging=True,
|
21
|
+
instrumentation_options=instrumentation_options
|
22
|
+
)
|
23
|
+
|
24
|
+
# Export the logger instance
|
25
|
+
__all__ = ['logger']
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cwyodmodules
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.35
|
4
4
|
Summary: Add your description here
|
5
5
|
Author-email: Patrik <patrikhartl@gmail.com>
|
6
6
|
Classifier: Operating System :: OS Independent
|
@@ -40,7 +40,7 @@ Requires-Dist: azure-search-documents==11.6.0b4
|
|
40
40
|
Requires-Dist: semantic-kernel==1.3.0
|
41
41
|
Requires-Dist: pydantic==2.7.4
|
42
42
|
Requires-Dist: pandas>=2.2.3
|
43
|
-
Requires-Dist: azpaddypy>=0.2.
|
43
|
+
Requires-Dist: azpaddypy>=0.2.7
|
44
44
|
Dynamic: license-file
|
45
45
|
|
46
46
|
# paddypy
|
@@ -3,7 +3,7 @@ name = "cwyodmodules"
|
|
3
3
|
authors = [
|
4
4
|
{ name="Patrik", email="patrikhartl@gmail.com" },
|
5
5
|
]
|
6
|
-
version = '0.3.
|
6
|
+
version = '0.3.35'
|
7
7
|
description = "Add your description here"
|
8
8
|
readme = "README.md"
|
9
9
|
requires-python = "==3.11.11"
|
@@ -44,7 +44,7 @@ dependencies = [
|
|
44
44
|
"semantic-kernel==1.3.0",
|
45
45
|
"pydantic==2.7.4",
|
46
46
|
"pandas>=2.2.3",
|
47
|
-
"azpaddypy>=0.2.
|
47
|
+
"azpaddypy>=0.2.7",
|
48
48
|
]
|
49
49
|
[tool.setuptools.package-data]
|
50
50
|
'*' = ['*.json','*.txt']
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import os
|
2
|
-
from azpaddypy.mgmt.logging import create_app_logger
|
3
|
-
|
4
|
-
application_insights_connection_string=os.getenv("APPLICATIONINSIGHTS_CONNECTION_STRING")
|
5
|
-
|
6
|
-
# Create a single instance of the logger
|
7
|
-
logger = create_app_logger(
|
8
|
-
connection_string=application_insights_connection_string,
|
9
|
-
service_name=__name__,
|
10
|
-
service_version="1.0.0",
|
11
|
-
enable_console_logging=True,
|
12
|
-
)
|
13
|
-
|
14
|
-
# Export the logger instance
|
15
|
-
__all__ = ['logger']
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/auth_utils.py
RENAMED
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/cosmosdb.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/chat_history/sample_user.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/common/source_document.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/layout.py
RENAMED
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_chunking/page.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/layout.py
RENAMED
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/read.py
RENAMED
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/document_loading/web.py
RENAMED
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/__init__.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
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/config/default.json
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
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/env_helper.py
RENAMED
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/lightrag_helper.py
RENAMED
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/helpers/llm_helper.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/prompt_flow.py
RENAMED
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/orchestrator/strategies.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/parser/parser_base.py
RENAMED
File without changes
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/plugins/chat_plugin.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
|
{cwyodmodules-0.3.33 → cwyodmodules-0.3.35}/cwyodmodules/batch/utilities/tools/post_prompt_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
|