cwyodmodules 0.3.75__tar.gz → 0.3.77__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.
Files changed (123) hide show
  1. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/PKG-INFO +2 -2
  2. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/mgmt_config.py +20 -8
  3. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules.egg-info/PKG-INFO +2 -2
  4. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules.egg-info/requires.txt +1 -1
  5. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/pyproject.toml +2 -2
  6. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/LICENSE +0 -0
  7. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/README.md +0 -0
  8. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/__init__.py +0 -0
  9. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/api/__init__.py +0 -0
  10. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/api/chat_history.py +0 -0
  11. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/__init__.py +0 -0
  12. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/__init__.py +0 -0
  13. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/chat_history/auth_utils.py +0 -0
  14. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/chat_history/cosmosdb.py +0 -0
  15. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/chat_history/database_client_base.py +0 -0
  16. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/chat_history/database_factory.py +0 -0
  17. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/chat_history/postgresdbservice.py +0 -0
  18. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/chat_history/sample_user.py +0 -0
  19. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/common/__init__.py +0 -0
  20. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/common/answer.py +0 -0
  21. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/common/source_document.py +0 -0
  22. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_chunking/__init__.py +0 -0
  23. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_chunking/chunking_strategy.py +0 -0
  24. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_chunking/document_chunking_base.py +0 -0
  25. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_chunking/fixed_size_overlap.py +0 -0
  26. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_chunking/layout.py +0 -0
  27. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_chunking/page.py +0 -0
  28. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_chunking/paragraph.py +0 -0
  29. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_chunking/strategies.py +0 -0
  30. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_loading/__init__.py +0 -0
  31. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_loading/document_loading_base.py +0 -0
  32. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_loading/layout.py +0 -0
  33. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_loading/read.py +0 -0
  34. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_loading/strategies.py +0 -0
  35. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_loading/web.py +0 -0
  36. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/document_loading/word_document.py +0 -0
  37. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/__init__.py +0 -0
  38. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/azure_blob_storage_client.py +0 -0
  39. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/azure_computer_vision_client.py +0 -0
  40. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/azure_form_recognizer_helper.py +0 -0
  41. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/azure_postgres_helper.py +0 -0
  42. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/azure_postgres_helper_light_rag.py +0 -0
  43. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/azure_search_helper.py +0 -0
  44. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/agent_mode.py +0 -0
  45. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/assistant_strategy.py +0 -0
  46. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/config_helper.py +0 -0
  47. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/conversation_flow.py +0 -0
  48. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/database_type.py +0 -0
  49. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/default.json +0 -0
  50. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/default_contract_assistant_prompt.txt +0 -0
  51. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/default_employee_assistant_prompt.txt +0 -0
  52. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/config/embedding_config.py +0 -0
  53. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/document_chunking_helper.py +0 -0
  54. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/document_loading_helper.py +0 -0
  55. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/embedders/embedder_base.py +0 -0
  56. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/embedders/embedder_factory.py +0 -0
  57. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/embedders/integrated_vectorization_embedder.py +0 -0
  58. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/embedders/postgres_embedder.py +0 -0
  59. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/embedders/push_embedder.py +0 -0
  60. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/env_helper.py +0 -0
  61. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/lightrag_helper.py +0 -0
  62. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/llm_helper.py +0 -0
  63. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/helpers/orchestrator_helper.py +0 -0
  64. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/integrated_vectorization/azure_search_datasource.py +0 -0
  65. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/integrated_vectorization/azure_search_index.py +0 -0
  66. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/integrated_vectorization/azure_search_indexer.py +0 -0
  67. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/integrated_vectorization/azure_search_skillset.py +0 -0
  68. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/loggers/conversation_logger.py +0 -0
  69. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/orchestrator/__init__.py +0 -0
  70. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/orchestrator/lang_chain_agent.py +0 -0
  71. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/orchestrator/open_ai_functions.py +0 -0
  72. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/orchestrator/orchestration_strategy.py +0 -0
  73. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/orchestrator/orchestrator_base.py +0 -0
  74. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/orchestrator/prompt_flow.py +0 -0
  75. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/orchestrator/semantic_kernel_orchestrator.py +0 -0
  76. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/orchestrator/strategies.py +0 -0
  77. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/parser/__init__.py +0 -0
  78. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/parser/output_parser_tool.py +0 -0
  79. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/parser/parser_base.py +0 -0
  80. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/plugins/chat_plugin.py +0 -0
  81. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/plugins/outlook_calendar_plugin.py +0 -0
  82. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/plugins/post_answering_plugin.py +0 -0
  83. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/search/azure_search_handler.py +0 -0
  84. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/search/azure_search_handler_light_rag.py +0 -0
  85. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/search/integrated_vectorization_search_handler.py +0 -0
  86. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/search/lightrag_search_handler.py +0 -0
  87. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/search/postgres_search_handler.py +0 -0
  88. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/search/postgres_search_handler_light_rag.py +0 -0
  89. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/search/search.py +0 -0
  90. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/search/search_handler_base.py +0 -0
  91. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/tools/__init__.py +0 -0
  92. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/tools/answer_processing_base.py +0 -0
  93. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/tools/answering_tool_base.py +0 -0
  94. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/tools/content_safety_checker.py +0 -0
  95. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/tools/post_prompt_tool.py +0 -0
  96. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/tools/question_answer_tool.py +0 -0
  97. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/batch/utilities/tools/text_processing_tool.py +0 -0
  98. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/__init__.py +0 -0
  99. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/config.py +0 -0
  100. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/database/__init__.py +0 -0
  101. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/database/base.py +0 -0
  102. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/database/models.py +0 -0
  103. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/indexing/__init__.py +0 -0
  104. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/indexing/chunking.py +0 -0
  105. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/indexing/extraction.py +0 -0
  106. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/indexing/types.py +0 -0
  107. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/indexing/upsert.py +0 -0
  108. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/indexing/utils.py +0 -0
  109. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/llm/__init__.py +0 -0
  110. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/llm/llm.py +0 -0
  111. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/llm/prompt.py +0 -0
  112. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/main.py +0 -0
  113. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/query/__init__.py +0 -0
  114. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/query/generate.py +0 -0
  115. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/query/graph_search.py +0 -0
  116. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/query/types.py +0 -0
  117. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules/graphrag/query/vector_search.py +0 -0
  118. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules.egg-info/SOURCES.txt +0 -0
  119. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules.egg-info/dependency_links.txt +0 -0
  120. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/cwyodmodules.egg-info/top_level.txt +0 -0
  121. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/setup.cfg +0 -0
  122. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/tests/test_api.py +0 -0
  123. {cwyodmodules-0.3.75 → cwyodmodules-0.3.77}/tests/test_batch.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cwyodmodules
3
- Version: 0.3.75
3
+ Version: 0.3.77
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.5.3
43
+ Requires-Dist: azpaddypy>=0.5.5
44
44
  Dynamic: license-file
45
45
 
46
46
  # paddypy
@@ -26,7 +26,9 @@ from azpaddypy.mgmt.local_env_manager import create_local_env_manager
26
26
  # =============================================================================
27
27
 
28
28
  # Service identity - customize these for your project
29
- SERVICE_NAME = os.getenv("SERVICE_NAME") or str(__name__)
29
+ REFLECTION_NAME = os.getenv("REFLECTION_NAME")
30
+ REFLECTION_KIND = os.getenv("REFLECTION_KIND")
31
+ SERVICE_NAME = REFLECTION_NAME or str(__name__)
30
32
  SERVICE_VERSION = os.getenv("SERVICE_VERSION", "1.0.0")
31
33
 
32
34
  def is_running_in_docker():
@@ -72,9 +74,9 @@ LOGGER_CONNECTION_STRING = os.getenv("APPLICATIONINSIGHTS_CONNECTION_STRING")
72
74
  # Local development settings
73
75
  if running_in_docker:
74
76
  LOCAL_SETTINGS = {
75
- "AZURE_CLIENT_ID": "***",
76
- "AZURE_TENANT_ID": "***",
77
- "AZURE_CLIENT_SECRET": "***"
77
+ "AZURE_CLIENT_ID": "aa73da4a-2888-4cb7-896e-5d51125f11f0",
78
+ "AZURE_TENANT_ID": "e5590d5d-336c-4cf5-b0ac-b79a598ec797",
79
+ "AZURE_CLIENT_SECRET": "IQ08Q~4uCfc4B~p2F95D2737GzYvvrtIjursFbCf"
78
80
  }
79
81
  else:
80
82
  LOCAL_SETTINGS = {
@@ -130,13 +132,13 @@ KEYVAULT_CONNECTION_STRING = LOGGER_CONNECTION_STRING
130
132
  # Create logger instance
131
133
  if "functionapp" in os.getenv("REFLECTION_KIND", "app"):
132
134
  logger = create_function_logger(
133
- function_app_name=os.getenv("REFLECTION_NAME", "app"),
134
- function_name=os.getenv("REFLECTION_KIND", "app"),
135
+ function_app_name=REFLECTION_NAME,
136
+ function_name=REFLECTION_KIND,
135
137
  service_version=SERVICE_VERSION,
136
138
  connection_string=LOGGER_CONNECTION_STRING,
137
139
  instrumentation_options=LOGGER_INSTRUMENTATION_OPTIONS,
138
140
  )
139
- logger.info("Function logger initialized")
141
+ logger.info("Function logger: " + str(REFLECTION_KIND) + " " + str(REFLECTION_NAME) + " initialized")
140
142
  else:
141
143
  logger = create_app_logger(
142
144
  service_name=SERVICE_NAME,
@@ -145,7 +147,17 @@ else:
145
147
  enable_console_logging=LOGGER_ENABLE_CONSOLE,
146
148
  instrumentation_options=LOGGER_INSTRUMENTATION_OPTIONS,
147
149
  )
148
- logger.info("App logger initialized")
150
+ logger.info("App logger: " + str(REFLECTION_KIND) + " " + str(REFLECTION_NAME) + " initialized")
151
+
152
+ # Create local development settings instance
153
+ local_env_manager = create_local_env_manager(
154
+ file_path=".env",
155
+ settings=LOCAL_SETTINGS,
156
+ logger=logger,
157
+ override_json=True,
158
+ override_dotenv=True,
159
+ override_settings=True,
160
+ )
149
161
 
150
162
  # Create identity instance with shared logger
151
163
  identity = create_azure_identity(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cwyodmodules
3
- Version: 0.3.75
3
+ Version: 0.3.77
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.5.3
43
+ Requires-Dist: azpaddypy>=0.5.5
44
44
  Dynamic: license-file
45
45
 
46
46
  # paddypy
@@ -31,4 +31,4 @@ azure-search-documents==11.6.0b4
31
31
  semantic-kernel==1.3.0
32
32
  pydantic==2.7.4
33
33
  pandas>=2.2.3
34
- azpaddypy>=0.5.3
34
+ azpaddypy>=0.5.5
@@ -3,7 +3,7 @@ name = "cwyodmodules"
3
3
  authors = [
4
4
  { name="Patrik", email="patrikhartl@gmail.com" },
5
5
  ]
6
- version = '0.3.75'
6
+ version = '0.3.77'
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.5.3",
47
+ "azpaddypy>=0.5.5",
48
48
  ]
49
49
 
50
50
  [tool.uv]
File without changes
File without changes
File without changes