langfun 0.1.2.dev202510070805__py3-none-any.whl → 0.1.2.dev202510090804__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.
Potentially problematic release.
This version of langfun might be problematic. Click here for more details.
- langfun/core/language_model.py +1 -1
- langfun/core/structured/querying.py +3 -0
- langfun/env/event_handlers/metric_writer.py +52 -18
- langfun/env/event_handlers/metric_writer_test.py +41 -14
- {langfun-0.1.2.dev202510070805.dist-info → langfun-0.1.2.dev202510090804.dist-info}/METADATA +1 -1
- {langfun-0.1.2.dev202510070805.dist-info → langfun-0.1.2.dev202510090804.dist-info}/RECORD +9 -9
- {langfun-0.1.2.dev202510070805.dist-info → langfun-0.1.2.dev202510090804.dist-info}/WHEEL +0 -0
- {langfun-0.1.2.dev202510070805.dist-info → langfun-0.1.2.dev202510090804.dist-info}/licenses/LICENSE +0 -0
- {langfun-0.1.2.dev202510070805.dist-info → langfun-0.1.2.dev202510090804.dist-info}/top_level.txt +0 -0
langfun/core/language_model.py
CHANGED
|
@@ -1462,7 +1462,7 @@ class _Metrics:
|
|
|
1462
1462
|
'Number of calls to the language model.',
|
|
1463
1463
|
parameters={'model': str, 'error': str},
|
|
1464
1464
|
)
|
|
1465
|
-
self.language_model_call_duration_ms = self._metrics.
|
|
1465
|
+
self.language_model_call_duration_ms = self._metrics.get_distribution(
|
|
1466
1466
|
'language_model_call_duration_ms',
|
|
1467
1467
|
'Duration of calls to the language model in milliseconds.',
|
|
1468
1468
|
parameters={'model': str, 'error': str},
|
|
@@ -446,6 +446,9 @@ def query(
|
|
|
446
446
|
**kwargs: Additional keyword arguments for:
|
|
447
447
|
- Rendering templates (e.g., `template_str`, `preamble`),
|
|
448
448
|
- Configuring `lf.structured.Mapping`.
|
|
449
|
+
- metadata_xxx, which will be passed through to the rendered message
|
|
450
|
+
metadata under key `xxx`. This allows LLM behavior customization based
|
|
451
|
+
on metadata `xxx` from the prompt.
|
|
449
452
|
|
|
450
453
|
Returns:
|
|
451
454
|
The result of the query:
|
|
@@ -33,12 +33,12 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
33
33
|
self,
|
|
34
34
|
name: str,
|
|
35
35
|
description: str,
|
|
36
|
-
parameters: dict[str, type[str]] | None = None
|
|
36
|
+
parameters: dict[str, type[str]] | None = None,
|
|
37
37
|
) -> pg.monitoring.Counter:
|
|
38
38
|
return self._metric_collection.get_counter(
|
|
39
39
|
name=name,
|
|
40
40
|
description=description,
|
|
41
|
-
parameters=parameters
|
|
41
|
+
parameters=parameters,
|
|
42
42
|
)
|
|
43
43
|
|
|
44
44
|
def _get_scalar(
|
|
@@ -53,9 +53,21 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
53
53
|
parameters=parameters
|
|
54
54
|
)
|
|
55
55
|
|
|
56
|
+
def _get_distribution(
|
|
57
|
+
self,
|
|
58
|
+
name: str,
|
|
59
|
+
description: str,
|
|
60
|
+
parameters: dict[str, type[str]] | None = None
|
|
61
|
+
) -> pg.monitoring.Metric:
|
|
62
|
+
return self._metric_collection.get_distribution(
|
|
63
|
+
name=name,
|
|
64
|
+
description=description,
|
|
65
|
+
parameters=parameters
|
|
66
|
+
)
|
|
67
|
+
|
|
56
68
|
def _error_tag(self, error: BaseException | None) -> str:
|
|
57
69
|
if error is None:
|
|
58
|
-
return ''
|
|
70
|
+
return 'Success'
|
|
59
71
|
return pg.utils.ErrorInfo.from_exception(error).tag
|
|
60
72
|
|
|
61
73
|
def _initialize_metrics(self) -> None:
|
|
@@ -67,7 +79,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
67
79
|
# Environment metrics.
|
|
68
80
|
#
|
|
69
81
|
|
|
70
|
-
self._environment_housekeep_duration_ms = self.
|
|
82
|
+
self._environment_housekeep_duration_ms = self._get_distribution(
|
|
71
83
|
'environment_housekeep_duration_ms',
|
|
72
84
|
description='Environment housekeeping duration in milliseconds',
|
|
73
85
|
parameters={
|
|
@@ -100,6 +112,15 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
100
112
|
'error': str
|
|
101
113
|
}
|
|
102
114
|
)
|
|
115
|
+
self._sandbox_count = self._get_scalar(
|
|
116
|
+
'sandbox_count',
|
|
117
|
+
description='Sandbox count',
|
|
118
|
+
parameters={
|
|
119
|
+
'app': str,
|
|
120
|
+
'environment_id': str,
|
|
121
|
+
'status': str,
|
|
122
|
+
},
|
|
123
|
+
)
|
|
103
124
|
self._sandbox_housekeep = self._get_counter(
|
|
104
125
|
'sandbox_housekeep',
|
|
105
126
|
description='Sandbox housekeeping counter',
|
|
@@ -121,7 +142,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
121
142
|
)
|
|
122
143
|
|
|
123
144
|
# Sandbox scalars.
|
|
124
|
-
self._sandbox_lifetime_ms = self.
|
|
145
|
+
self._sandbox_lifetime_ms = self._get_distribution(
|
|
125
146
|
'sandbox_lifetime_ms',
|
|
126
147
|
description='Sandbox life time in milliseconds',
|
|
127
148
|
parameters={
|
|
@@ -130,7 +151,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
130
151
|
'error': str,
|
|
131
152
|
}
|
|
132
153
|
)
|
|
133
|
-
self._sandbox_start_duration_ms = self.
|
|
154
|
+
self._sandbox_start_duration_ms = self._get_distribution(
|
|
134
155
|
'sandbox_start_duration_ms',
|
|
135
156
|
description='Sandbox start duration in milliseconds',
|
|
136
157
|
parameters={
|
|
@@ -139,7 +160,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
139
160
|
'error': str,
|
|
140
161
|
}
|
|
141
162
|
)
|
|
142
|
-
self._sandbox_shutdown_duration_ms = self.
|
|
163
|
+
self._sandbox_shutdown_duration_ms = self._get_distribution(
|
|
143
164
|
'sandbox_shutdown_duration_ms',
|
|
144
165
|
description='Sandbox shutdown duration in milliseconds',
|
|
145
166
|
parameters={
|
|
@@ -148,7 +169,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
148
169
|
'error': str,
|
|
149
170
|
}
|
|
150
171
|
)
|
|
151
|
-
self._sandbox_housekeep_duration_ms = self.
|
|
172
|
+
self._sandbox_housekeep_duration_ms = self._get_distribution(
|
|
152
173
|
'sandbox_housekeep_duration_ms',
|
|
153
174
|
description='Sandbox housekeeping duration in milliseconds',
|
|
154
175
|
parameters={
|
|
@@ -157,7 +178,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
157
178
|
'error': str,
|
|
158
179
|
}
|
|
159
180
|
)
|
|
160
|
-
self._sandbox_status_duration_ms = self.
|
|
181
|
+
self._sandbox_status_duration_ms = self._get_distribution(
|
|
161
182
|
'sandbox_status_duration_ms',
|
|
162
183
|
description='Sandbox duration of specific status in milliseconds',
|
|
163
184
|
parameters={
|
|
@@ -166,7 +187,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
166
187
|
'status': str,
|
|
167
188
|
}
|
|
168
189
|
)
|
|
169
|
-
self._sandbox_activity_duration_ms = self.
|
|
190
|
+
self._sandbox_activity_duration_ms = self._get_distribution(
|
|
170
191
|
'sandbox_activity_duration_ms',
|
|
171
192
|
description='Sandbox activity duration in milliseconds',
|
|
172
193
|
parameters={
|
|
@@ -234,7 +255,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
234
255
|
)
|
|
235
256
|
|
|
236
257
|
# Feature scalars.
|
|
237
|
-
self._feature_setup_duration_ms = self.
|
|
258
|
+
self._feature_setup_duration_ms = self._get_distribution(
|
|
238
259
|
'feature_setup_duration_ms',
|
|
239
260
|
description='Feature setup duration in milliseconds',
|
|
240
261
|
parameters={
|
|
@@ -244,7 +265,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
244
265
|
'error': str,
|
|
245
266
|
}
|
|
246
267
|
)
|
|
247
|
-
self._feature_teardown_duration_ms = self.
|
|
268
|
+
self._feature_teardown_duration_ms = self._get_distribution(
|
|
248
269
|
'feature_teardown_duration_ms',
|
|
249
270
|
description='Feature teardown duration in milliseconds',
|
|
250
271
|
parameters={
|
|
@@ -254,7 +275,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
254
275
|
'error': str,
|
|
255
276
|
}
|
|
256
277
|
)
|
|
257
|
-
self._feature_setup_session_duration_ms = self.
|
|
278
|
+
self._feature_setup_session_duration_ms = self._get_distribution(
|
|
258
279
|
'feature_setup_session_duration_ms',
|
|
259
280
|
description='Feature setup session duration in milliseconds',
|
|
260
281
|
parameters={
|
|
@@ -264,7 +285,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
264
285
|
'error': str,
|
|
265
286
|
}
|
|
266
287
|
)
|
|
267
|
-
self._feature_teardown_session_duration_ms = self.
|
|
288
|
+
self._feature_teardown_session_duration_ms = self._get_distribution(
|
|
268
289
|
'feature_teardown_session_duration_ms',
|
|
269
290
|
description='Feature teardown session duration in milliseconds',
|
|
270
291
|
parameters={
|
|
@@ -274,7 +295,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
274
295
|
'error': str,
|
|
275
296
|
}
|
|
276
297
|
)
|
|
277
|
-
self._feature_housekeep_duration_ms = self.
|
|
298
|
+
self._feature_housekeep_duration_ms = self._get_distribution(
|
|
278
299
|
'feature_housekeep_duration_ms',
|
|
279
300
|
description='Feature housekeeping duration in milliseconds',
|
|
280
301
|
parameters={
|
|
@@ -289,7 +310,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
289
310
|
# Session metrics.
|
|
290
311
|
#
|
|
291
312
|
|
|
292
|
-
self._session_start_duration_ms = self.
|
|
313
|
+
self._session_start_duration_ms = self._get_distribution(
|
|
293
314
|
'session_start_duration_ms',
|
|
294
315
|
description='Session start duration in milliseconds',
|
|
295
316
|
parameters={
|
|
@@ -298,7 +319,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
298
319
|
'error': str,
|
|
299
320
|
}
|
|
300
321
|
)
|
|
301
|
-
self._session_end_duration_ms = self.
|
|
322
|
+
self._session_end_duration_ms = self._get_distribution(
|
|
302
323
|
'session_end_duration_ms',
|
|
303
324
|
description='Session end duration in milliseconds',
|
|
304
325
|
parameters={
|
|
@@ -307,7 +328,7 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
307
328
|
'error': str,
|
|
308
329
|
}
|
|
309
330
|
)
|
|
310
|
-
self._session_lifetime_ms = self.
|
|
331
|
+
self._session_lifetime_ms = self._get_distribution(
|
|
311
332
|
'session_lifetime_ms',
|
|
312
333
|
description='Session lifetime in milliseconds',
|
|
313
334
|
parameters={
|
|
@@ -373,6 +394,19 @@ class MetricWriter(pg.Object, base.EventHandler):
|
|
|
373
394
|
environment_id=str(environment.id),
|
|
374
395
|
status=old_status.value
|
|
375
396
|
)
|
|
397
|
+
if old_status != base.Sandbox.Status.CREATED:
|
|
398
|
+
self._sandbox_count.increment(
|
|
399
|
+
delta=-1,
|
|
400
|
+
app=self.app,
|
|
401
|
+
environment_id=str(environment.id),
|
|
402
|
+
status=old_status.value
|
|
403
|
+
)
|
|
404
|
+
if new_status != base.Sandbox.Status.OFFLINE:
|
|
405
|
+
self._sandbox_count.increment(
|
|
406
|
+
app=self.app,
|
|
407
|
+
environment_id=str(environment.id),
|
|
408
|
+
status=new_status.value
|
|
409
|
+
)
|
|
376
410
|
|
|
377
411
|
def on_sandbox_shutdown(
|
|
378
412
|
self,
|
|
@@ -47,7 +47,7 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
47
47
|
writer._sandbox_start.value(
|
|
48
48
|
app='test_app',
|
|
49
49
|
environment_id='testing-env',
|
|
50
|
-
error=''
|
|
50
|
+
error='Success'
|
|
51
51
|
),
|
|
52
52
|
2
|
|
53
53
|
)
|
|
@@ -55,7 +55,7 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
55
55
|
writer._sandbox_housekeep.value(
|
|
56
56
|
app='test_app',
|
|
57
57
|
environment_id='testing-env',
|
|
58
|
-
error=''
|
|
58
|
+
error='Success'
|
|
59
59
|
),
|
|
60
60
|
0,
|
|
61
61
|
)
|
|
@@ -63,15 +63,32 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
63
63
|
writer._sandbox_shutdown.value(
|
|
64
64
|
app='test_app',
|
|
65
65
|
environment_id='testing-env',
|
|
66
|
-
error=''
|
|
66
|
+
error='Success'
|
|
67
67
|
),
|
|
68
68
|
2
|
|
69
69
|
)
|
|
70
|
+
self.assertEqual(
|
|
71
|
+
writer._sandbox_count.value(
|
|
72
|
+
app='test_app',
|
|
73
|
+
environment_id='testing-env',
|
|
74
|
+
status='ready',
|
|
75
|
+
),
|
|
76
|
+
0
|
|
77
|
+
)
|
|
78
|
+
self.assertEqual(
|
|
79
|
+
writer._sandbox_count.value(
|
|
80
|
+
app='test_app',
|
|
81
|
+
environment_id='testing-env',
|
|
82
|
+
status='offline',
|
|
83
|
+
),
|
|
84
|
+
0
|
|
85
|
+
)
|
|
70
86
|
self.assertEqual(
|
|
71
87
|
writer._feature_setup.value(
|
|
72
88
|
app='test_app',
|
|
73
89
|
environment_id='testing-env',
|
|
74
|
-
feature_name='test_feature1',
|
|
90
|
+
feature_name='test_feature1',
|
|
91
|
+
error='Success'
|
|
75
92
|
),
|
|
76
93
|
2,
|
|
77
94
|
)
|
|
@@ -79,7 +96,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
79
96
|
writer._feature_setup.value(
|
|
80
97
|
app='test_app',
|
|
81
98
|
environment_id='testing-env',
|
|
82
|
-
feature_name='test_feature2',
|
|
99
|
+
feature_name='test_feature2',
|
|
100
|
+
error='Success'
|
|
83
101
|
),
|
|
84
102
|
2,
|
|
85
103
|
)
|
|
@@ -87,7 +105,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
87
105
|
writer._feature_setup_session.value(
|
|
88
106
|
app='test_app',
|
|
89
107
|
environment_id='testing-env',
|
|
90
|
-
feature_name='test_feature1',
|
|
108
|
+
feature_name='test_feature1',
|
|
109
|
+
error='Success'
|
|
91
110
|
),
|
|
92
111
|
3,
|
|
93
112
|
)
|
|
@@ -95,7 +114,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
95
114
|
writer._feature_setup_session.value(
|
|
96
115
|
app='test_app',
|
|
97
116
|
environment_id='testing-env',
|
|
98
|
-
feature_name='test_feature2',
|
|
117
|
+
feature_name='test_feature2',
|
|
118
|
+
error='Success'
|
|
99
119
|
),
|
|
100
120
|
3,
|
|
101
121
|
)
|
|
@@ -103,7 +123,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
103
123
|
writer._feature_teardown_session.value(
|
|
104
124
|
app='test_app',
|
|
105
125
|
environment_id='testing-env',
|
|
106
|
-
feature_name='test_feature1',
|
|
126
|
+
feature_name='test_feature1',
|
|
127
|
+
error='Success'
|
|
107
128
|
),
|
|
108
129
|
2,
|
|
109
130
|
)
|
|
@@ -111,7 +132,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
111
132
|
writer._feature_teardown_session.value(
|
|
112
133
|
app='test_app',
|
|
113
134
|
environment_id='testing-env',
|
|
114
|
-
feature_name='test_feature2',
|
|
135
|
+
feature_name='test_feature2',
|
|
136
|
+
error='Success'
|
|
115
137
|
),
|
|
116
138
|
2,
|
|
117
139
|
)
|
|
@@ -119,7 +141,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
119
141
|
writer._feature_teardown.value(
|
|
120
142
|
app='test_app',
|
|
121
143
|
environment_id='testing-env',
|
|
122
|
-
feature_name='test_feature1',
|
|
144
|
+
feature_name='test_feature1',
|
|
145
|
+
error='Success'
|
|
123
146
|
),
|
|
124
147
|
2,
|
|
125
148
|
)
|
|
@@ -127,7 +150,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
127
150
|
writer._feature_teardown.value(
|
|
128
151
|
app='test_app',
|
|
129
152
|
environment_id='testing-env',
|
|
130
|
-
feature_name='test_feature2',
|
|
153
|
+
feature_name='test_feature2',
|
|
154
|
+
error='Success'
|
|
131
155
|
),
|
|
132
156
|
2,
|
|
133
157
|
)
|
|
@@ -135,7 +159,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
135
159
|
writer._feature_housekeep.value(
|
|
136
160
|
app='test_app',
|
|
137
161
|
environment_id='testing-env',
|
|
138
|
-
feature_name='test_feature1',
|
|
162
|
+
feature_name='test_feature1',
|
|
163
|
+
error='Success'
|
|
139
164
|
),
|
|
140
165
|
0,
|
|
141
166
|
)
|
|
@@ -143,7 +168,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
143
168
|
writer._feature_housekeep.value(
|
|
144
169
|
app='test_app',
|
|
145
170
|
environment_id='testing-env',
|
|
146
|
-
feature_name='test_feature2',
|
|
171
|
+
feature_name='test_feature2',
|
|
172
|
+
error='Success'
|
|
147
173
|
),
|
|
148
174
|
0,
|
|
149
175
|
)
|
|
@@ -151,7 +177,8 @@ class MetricWriterTest(unittest.TestCase):
|
|
|
151
177
|
writer._sandbox_activity.value(
|
|
152
178
|
app='test_app',
|
|
153
179
|
environment_id='testing-env',
|
|
154
|
-
activity='shell',
|
|
180
|
+
activity='shell',
|
|
181
|
+
error='Success'
|
|
155
182
|
),
|
|
156
183
|
18
|
|
157
184
|
)
|
|
@@ -17,7 +17,7 @@ langfun/core/console.py,sha256=cLQEf84aDxItA9fStJV22xJch0TqFLNf9hLqwJ0RHmU,2652
|
|
|
17
17
|
langfun/core/console_test.py,sha256=pBOcuNMJdVELywvroptfcRtJMsegMm3wSlHAL2TdxVk,1679
|
|
18
18
|
langfun/core/langfunc.py,sha256=G50YgoVZ0y1GFw2ev41MlOqr6qa8YakbvNC0h_E0PiA,11140
|
|
19
19
|
langfun/core/langfunc_test.py,sha256=CDn-gJCa5EnjN7cotAVCfSCbuzddq2o-HzEt7kV8HbY,8882
|
|
20
|
-
langfun/core/language_model.py,sha256=
|
|
20
|
+
langfun/core/language_model.py,sha256=xrSaO7KLBRf0rEjnFHBH9fZ0oGfmWhlA0ezAlWEMnTc,52107
|
|
21
21
|
langfun/core/language_model_test.py,sha256=aJWn3UJm_S6U7VhU7EVXdJHPe1xza5glngPkRGtx280,38426
|
|
22
22
|
langfun/core/logging.py,sha256=7IGAhp7mGokZxxqtL-XZvFLKaZ5k3F5_Xp2NUtR4GwE,9136
|
|
23
23
|
langfun/core/logging_test.py,sha256=vbVGOQxwMmVSiFfbt2897gUt-8nqDpV64jCAeUG_q5U,6924
|
|
@@ -146,7 +146,7 @@ langfun/core/structured/mapping.py,sha256=1YBW8PKpJKXS7DKukfzKNioL84PrKUcB4KOUud
|
|
|
146
146
|
langfun/core/structured/mapping_test.py,sha256=OntYvfDitAf0tAnzQty3YS90vyEn6FY1Mi93r_ViEk8,9594
|
|
147
147
|
langfun/core/structured/parsing.py,sha256=bLi7o1AdyDWc6TwxmYg70t_oTgmLkJWBafakdF8n2RI,14195
|
|
148
148
|
langfun/core/structured/parsing_test.py,sha256=vRfCSzA9q7C1cElkAnDvbRepULEa_vclqDIv-heypDw,22745
|
|
149
|
-
langfun/core/structured/querying.py,sha256=
|
|
149
|
+
langfun/core/structured/querying.py,sha256=Ev7DAc790nCOGbiQ6yz4caiSf0RQR1UTdwKIKEJJUMQ,39649
|
|
150
150
|
langfun/core/structured/querying_test.py,sha256=iDaqDJCJpdILj2b6I7fTLmbYzAU4EFjQacTRDxx2b0g,50353
|
|
151
151
|
langfun/core/structured/schema.py,sha256=xtgrr3t5tcYQ2gi_fkTKz2IgDMf84gpiykmBdfnV6Io,29486
|
|
152
152
|
langfun/core/structured/schema_generation.py,sha256=pEWeTd8tQWYnEHukas6GVl4uGerLsQ2aNybtnm4Qgxc,5352
|
|
@@ -179,10 +179,10 @@ langfun/env/event_handlers/__init__.py,sha256=H34n-TbKSgtxqBhE-yAti8fY6weF2_v3yw
|
|
|
179
179
|
langfun/env/event_handlers/base.py,sha256=eGdJ6N5em9kX-c9wzm1TdnRP5_5IAltX5JTHILdjzLM,10124
|
|
180
180
|
langfun/env/event_handlers/event_logger.py,sha256=3dbPjBe53dBgntYHlyLlj_77hVecPSXkmKeiGXMxlO0,12699
|
|
181
181
|
langfun/env/event_handlers/event_logger_test.py,sha256=PGof3rPllNnyzs3Yp8kaOHLeTkVrzUgCJwlODTrVRKI,9111
|
|
182
|
-
langfun/env/event_handlers/metric_writer.py,sha256=
|
|
183
|
-
langfun/env/event_handlers/metric_writer_test.py,sha256=
|
|
184
|
-
langfun-0.1.2.
|
|
185
|
-
langfun-0.1.2.
|
|
186
|
-
langfun-0.1.2.
|
|
187
|
-
langfun-0.1.2.
|
|
188
|
-
langfun-0.1.2.
|
|
182
|
+
langfun/env/event_handlers/metric_writer.py,sha256=NgJKsd6xWOtEd0IjYi7coGEaqGYkkPcDjXN9CQ3vxPU,18043
|
|
183
|
+
langfun/env/event_handlers/metric_writer_test.py,sha256=flRqK10wonhJk4idGD_8jjEjrfjgH0R-qcu-7Bj1G5s,5335
|
|
184
|
+
langfun-0.1.2.dev202510090804.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
|
185
|
+
langfun-0.1.2.dev202510090804.dist-info/METADATA,sha256=rmnTEsTUBmHyBaoSOzWAxwbLfVSYYpwMgsRifkQjBSA,7380
|
|
186
|
+
langfun-0.1.2.dev202510090804.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
187
|
+
langfun-0.1.2.dev202510090804.dist-info/top_level.txt,sha256=RhlEkHxs1qtzmmtWSwYoLVJAc1YrbPtxQ52uh8Z9VvY,8
|
|
188
|
+
langfun-0.1.2.dev202510090804.dist-info/RECORD,,
|
|
File without changes
|
{langfun-0.1.2.dev202510070805.dist-info → langfun-0.1.2.dev202510090804.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{langfun-0.1.2.dev202510070805.dist-info → langfun-0.1.2.dev202510090804.dist-info}/top_level.txt
RENAMED
|
File without changes
|