cwyodmodules 0.3.70__py3-none-any.whl → 0.3.72__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.
- cwyodmodules/mgmt_config.py +18 -18
- {cwyodmodules-0.3.70.dist-info → cwyodmodules-0.3.72.dist-info}/METADATA +2 -2
- {cwyodmodules-0.3.70.dist-info → cwyodmodules-0.3.72.dist-info}/RECORD +6 -6
- {cwyodmodules-0.3.70.dist-info → cwyodmodules-0.3.72.dist-info}/WHEEL +0 -0
- {cwyodmodules-0.3.70.dist-info → cwyodmodules-0.3.72.dist-info}/licenses/LICENSE +0 -0
- {cwyodmodules-0.3.70.dist-info → cwyodmodules-0.3.72.dist-info}/top_level.txt +0 -0
cwyodmodules/mgmt_config.py
CHANGED
@@ -128,24 +128,24 @@ KEYVAULT_CONNECTION_STRING = LOGGER_CONNECTION_STRING
|
|
128
128
|
# =============================================================================
|
129
129
|
|
130
130
|
# Create logger instance
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
)
|
131
|
+
if "functionapp" in os.getenv("REFLECTION_KIND", "app"):
|
132
|
+
logger = create_function_logger(
|
133
|
+
function_app_name=os.getenv("REFLECTION_NAME", "app"),
|
134
|
+
function_name=os.getenv("REFLECTION_KIND", "app"),
|
135
|
+
service_version=SERVICE_VERSION,
|
136
|
+
connection_string=LOGGER_CONNECTION_STRING,
|
137
|
+
instrumentation_options=LOGGER_INSTRUMENTATION_OPTIONS,
|
138
|
+
)
|
139
|
+
logger.info("Function logger initialized")
|
140
|
+
else:
|
141
|
+
logger = create_app_logger(
|
142
|
+
service_name=SERVICE_NAME,
|
143
|
+
service_version=SERVICE_VERSION,
|
144
|
+
connection_string=LOGGER_CONNECTION_STRING,
|
145
|
+
enable_console_logging=LOGGER_ENABLE_CONSOLE,
|
146
|
+
instrumentation_options=LOGGER_INSTRUMENTATION_OPTIONS,
|
147
|
+
)
|
148
|
+
logger.info("App logger initialized")
|
149
149
|
|
150
150
|
# Create identity instance with shared logger
|
151
151
|
identity = create_azure_identity(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cwyodmodules
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.72
|
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.4.
|
43
|
+
Requires-Dist: azpaddypy>=0.4.8
|
44
44
|
Dynamic: license-file
|
45
45
|
|
46
46
|
# paddypy
|
@@ -1,5 +1,5 @@
|
|
1
1
|
cwyodmodules/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
2
|
-
cwyodmodules/mgmt_config.py,sha256=
|
2
|
+
cwyodmodules/mgmt_config.py,sha256=jIBcXlU2uH780BJ47BSLElQuH49vGzBFLkBxx3qXo9k,9659
|
3
3
|
cwyodmodules/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
cwyodmodules/api/chat_history.py,sha256=bVXFmhTHIfEiHv_nBrfizO-cQRHhKgrdcZ07OD1b0Tw,20683
|
5
5
|
cwyodmodules/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -109,8 +109,8 @@ cwyodmodules/graphrag/query/generate.py,sha256=BZiB6iw7PkIovw-CyYFogMHnDxK0Qu_4u
|
|
109
109
|
cwyodmodules/graphrag/query/graph_search.py,sha256=95h3ecSWx4864XgKABtG0fh3Nk8HkqJVzoCrO8daJ-Y,7724
|
110
110
|
cwyodmodules/graphrag/query/types.py,sha256=1Iq1dp4I4a56_cuFjOZ0NTgd0A2_MpVFznp_czgt6cI,617
|
111
111
|
cwyodmodules/graphrag/query/vector_search.py,sha256=9Gwu9LPjtoAYUU8WKqCvbCHAIg3dpk71reoYd1scLnQ,1807
|
112
|
-
cwyodmodules-0.3.
|
113
|
-
cwyodmodules-0.3.
|
114
|
-
cwyodmodules-0.3.
|
115
|
-
cwyodmodules-0.3.
|
116
|
-
cwyodmodules-0.3.
|
112
|
+
cwyodmodules-0.3.72.dist-info/licenses/LICENSE,sha256=UqBDTipijsSW2ZSOXyTZnMsXmLoEHTgNEM0tL4g-Sso,1150
|
113
|
+
cwyodmodules-0.3.72.dist-info/METADATA,sha256=FKwxzV2wa6r6_W7qwwLm1LecHzxpCR1-kMlicmqc94g,2002
|
114
|
+
cwyodmodules-0.3.72.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
115
|
+
cwyodmodules-0.3.72.dist-info/top_level.txt,sha256=99RENLbkdRX-qpJvsxZ5AfmTL5s6shSaKOWYpz1vwzg,13
|
116
|
+
cwyodmodules-0.3.72.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|