veris-ai 1.9.0__py3-none-any.whl → 1.10.0__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 veris-ai might be problematic. Click here for more details.

veris_ai/README.md CHANGED
@@ -14,9 +14,10 @@ This module contains the core implementation of the Veris AI Python SDK. Each co
14
14
 
15
15
  | Module | Purpose | Key Classes/Functions | Lines |
16
16
  |--------|---------|----------------------|-------|
17
- | [`tool_mock.py`](tool_mock.py) | Function mocking & FastAPI MCP | `VerisSDK`, `@mock`, `@stub` | 327 |
18
- | [`utils.py`](utils.py) | Type utilities & JSON schema | `extract_json_schema()` | 272 |
19
- | [`logging.py`](logging.py) | Logging configuration | `setup_logging()` | 116 |
17
+ | [`tool_mock.py`](tool_mock.py) | Function mocking & FastAPI MCP | `VerisSDK`, `@mock`, `@stub`, `@spy` | 327 |
18
+ | [`utils.py`](utils.py) | Type utilities & JSON schema | `extract_json_schema()`, `convert_to_type()` | 272 |
19
+ | [`api_client.py`](api_client.py) | Centralized API client | `SimulatorAPIClient` | 62 |
20
+ | [`logging.py`](logging.py) | Tool call/response logging | `log_tool_call()`, `log_tool_response()` | 116 |
20
21
  | [`models.py`](models.py) | Data models | Type definitions | 12 |
21
22
  | [`jaeger_interface/`](jaeger_interface/) | Jaeger Query API wrapper | `JaegerClient` | See module README |
22
23
 
@@ -26,16 +27,16 @@ This module contains the core implementation of the Veris AI Python SDK. Each co
26
27
 
27
28
  ### Mock Flow
28
29
  1. **Decoration**: `@veris.mock()` captures function metadata
29
- 2. **Environment Check**: `ENV=simulation` determines behavior
30
- 3. **API Call**: POST to `{VERIS_ENDPOINT_URL}/api/v2/tool_mock`
30
+ 2. **Session Check**: Presence of session ID determines behavior
31
+ 3. **API Call**: POST to VERIS API endpoint `/v2/tool_mock` (auto-configured)
31
32
  4. **Type Conversion**: Response converted using `extract_json_schema()`
32
33
 
33
34
  **Implementation**: [`tool_mock.py:200-250`](tool_mock.py)
34
35
 
35
36
  ### Spy Flow
36
- 1. **Pre-execution Logging**: Call details sent to `/api/v2/log_tool_call`
37
+ 1. **Pre-execution Logging**: Call details sent to `/v2/simulations/{session_id}/log_tool_call`
37
38
  2. **Function Execution**: Original function runs normally
38
- 3. **Post-execution Logging**: Response sent to `/api/v2/log_tool_response`
39
+ 3. **Post-execution Logging**: Response sent to `/v2/simulations/{session_id}/log_tool_response`
39
40
 
40
41
  **Implementation**: [`tool_mock.py:250-300`](tool_mock.py)
41
42
 
@@ -44,11 +45,11 @@ This module contains the core implementation of the Veris AI Python SDK. Each co
44
45
 
45
46
  **Semantic Tag**: `module-config`
46
47
 
47
- Environment variables are processed in [`tool_mock.py`](tool_mock.py):
48
+ Environment variables are processed in [`api_client.py`](api_client.py):
48
49
 
49
- - `VERIS_ENDPOINT_URL`: Mock server endpoint
50
- - `VERIS_MOCK_TIMEOUT`: Request timeout (default: 90s)
51
- - `ENV`: Set to `"simulation"` for mock mode
50
+ - `VERIS_API_KEY`: API authentication key (optional, but recommended)
51
+ - `VERIS_MOCK_TIMEOUT`: Request timeout (default: 90s)
52
+ - `VERIS_API_URL`: Override default API endpoint (rarely needed - defaults to production)
52
53
 
53
54
  ### Observability (OTLP / Logfire)
54
55
 
@@ -1,5 +1,6 @@
1
1
  """OpenAI Agents wrapper for automatic tool mocking via Veris SDK."""
2
2
 
3
+ import json
3
4
  import logging
4
5
  from collections.abc import Callable
5
6
  from typing import Any
@@ -88,7 +89,7 @@ def _wrap(
88
89
  return mock_tool_call(
89
90
  the_func,
90
91
  session_id,
91
- parameters,
92
+ json.loads(parameters),
92
93
  tool_options.get(tool_name_inner),
93
94
  )
94
95
  # Fall back to original if we couldn't extract the function
veris_ai/observability.py CHANGED
@@ -28,6 +28,12 @@ def init_observability() -> None: # noqa: PLR0912
28
28
 
29
29
  logfire.configure(scrubbing=False)
30
30
  logfire.instrument_openai_agents()
31
+ try:
32
+ logfire.instrument_redis()
33
+ except Exception:
34
+ logger.warning("Failed to instrument redis")
35
+ logfire.instrument_mcp()
36
+
31
37
  except Exception as e:
32
38
  # Tracing is optional; continue without Traceloop
33
39
  msg = "Logfire not found: " + str(e)
@@ -96,25 +102,6 @@ def init_observability() -> None: # noqa: PLR0912
96
102
  msg = "OpenTelemetry not found: " + str(e)
97
103
  raise RuntimeError(msg) from e
98
104
 
99
- try:
100
- from opentelemetry.instrumentation.httpx import (
101
- HTTPXClientInstrumentor, # type: ignore[import-not-found]
102
- )
103
-
104
- HTTPXClientInstrumentor().instrument(request_hook=_log_request_headers)
105
- except Exception as e:
106
- msg = "OpenTelemetry not found: " + str(e)
107
- raise RuntimeError(msg) from e
108
-
109
- # Optionally enable MCP-specific spans
110
- try:
111
- from opentelemetry.instrumentation.mcp import McpInstrumentor # type: ignore[import-not-found]
112
-
113
- McpInstrumentor().instrument()
114
- except Exception as e:
115
- msg = "OpenTelemetry not found: " + str(e)
116
- raise RuntimeError(msg) from e
117
-
118
105
 
119
106
  def instrument_fastapi_app(app: FastAPI) -> None:
120
107
  """Instrument a FastAPI app so inbound HTTP requests continue W3C traces.
@@ -122,10 +109,6 @@ def instrument_fastapi_app(app: FastAPI) -> None:
122
109
  Safe to call even if the fastapi instrumentation package is not installed.
123
110
  """
124
111
 
125
- try:
126
- from opentelemetry.instrumentation.fastapi import FastAPIInstrumentor # type: ignore[import-not-found]
112
+ import logfire
127
113
 
128
- FastAPIInstrumentor.instrument_app(app)
129
- except Exception as e:
130
- msg = "OpenTelemetry not found: " + str(e)
131
- raise RuntimeError(msg) from e
114
+ logfire.instrument_fastapi(app)
veris_ai/tool_mock.py CHANGED
@@ -5,6 +5,7 @@ from collections.abc import Callable
5
5
  from contextlib import suppress
6
6
  from contextvars import ContextVar
7
7
  from functools import wraps
8
+ import tenacity
8
9
  from typing import (
9
10
  Any,
10
11
  Literal,
@@ -13,10 +14,6 @@ from typing import (
13
14
  )
14
15
 
15
16
 
16
- from veris_ai.logging import (
17
- log_tool_call,
18
- log_tool_response,
19
- )
20
17
  from veris_ai.models import ResponseExpectation, ToolCallOptions
21
18
  from veris_ai.api_client import get_api_client
22
19
  from veris_ai.utils import convert_to_type, extract_json_schema, get_function_parameters
@@ -173,6 +170,9 @@ class VerisSDK:
173
170
  """Async wrapper."""
174
171
  session_id = _session_id_context.get()
175
172
  if not session_id:
173
+ logger.info(
174
+ f"No session ID found, executing original function: {func.__name__}"
175
+ )
176
176
  return await func(*args, **kwargs)
177
177
  parameters = get_function_parameters(func, args, kwargs)
178
178
  return mock_tool_call(
@@ -190,6 +190,9 @@ class VerisSDK:
190
190
  """Sync wrapper."""
191
191
  session_id = _session_id_context.get()
192
192
  if not session_id:
193
+ logger.info(
194
+ f"No session ID found, executing original function: {func.__name__}"
195
+ )
193
196
  return func(*args, **kwargs)
194
197
  parameters = get_function_parameters(func, args, kwargs)
195
198
  return mock_tool_call(
@@ -217,7 +220,9 @@ class VerisSDK:
217
220
  **kwargs: Any, # noqa: ANN401
218
221
  ) -> object:
219
222
  if not self.session_id:
220
- # If not in simulation mode, execute the original function
223
+ logger.info(
224
+ f"No session ID found, executing original function: {func.__name__}"
225
+ )
221
226
  return await func(*args, **kwargs)
222
227
  logger.info(f"Stubbing function: {func.__name__}")
223
228
  return return_value
@@ -225,7 +230,9 @@ class VerisSDK:
225
230
  @wraps(func)
226
231
  def sync_wrapper(*args: tuple[object, ...], **kwargs: Any) -> object: # noqa: ANN401
227
232
  if not self.session_id:
228
- # If not in simulation mode, execute the original function
233
+ logger.info(
234
+ f"No session ID found, executing original function: {func.__name__}"
235
+ )
229
236
  return func(*args, **kwargs)
230
237
  logger.info(f"Stubbing function: {func.__name__}")
231
238
  return return_value
@@ -236,10 +243,15 @@ class VerisSDK:
236
243
  return decorator
237
244
 
238
245
 
246
+ @tenacity.retry(
247
+ stop=tenacity.stop_after_attempt(3),
248
+ wait=tenacity.wait_exponential(multiplier=1, min=4, max=10),
249
+ reraise=True,
250
+ )
239
251
  def mock_tool_call(
240
252
  func: Callable,
241
253
  session_id: str,
242
- parameters: str,
254
+ parameters: dict[str, dict[str, str]],
243
255
  options: ToolCallOptions | None = None,
244
256
  ) -> object:
245
257
  """Mock tool call."""
@@ -262,7 +274,7 @@ def mock_tool_call(
262
274
  "cache_response": bool(options.cache_response),
263
275
  "tool_call": {
264
276
  "function_name": func.__name__,
265
- "parameters": json.loads(parameters),
277
+ "parameters": parameters,
266
278
  "return_type": json.dumps(extract_json_schema(return_type_obj)),
267
279
  "docstring": docstring,
268
280
  },
@@ -278,4 +290,41 @@ def mock_tool_call(
278
290
  return convert_to_type(mock_result, return_type_obj)
279
291
 
280
292
 
293
+ def log_tool_call(
294
+ session_id: str,
295
+ function_name: str,
296
+ parameters: dict[str, dict[str, str]],
297
+ docstring: str,
298
+ ) -> None:
299
+ """Log tool call synchronously to the VERIS logging endpoint."""
300
+ api_client = get_api_client()
301
+ endpoint = api_client.get_log_tool_call_endpoint(session_id)
302
+ payload = {
303
+ "function_name": function_name,
304
+ "parameters": parameters,
305
+ "docstring": docstring,
306
+ }
307
+ try:
308
+ api_client.post(endpoint, payload)
309
+ logger.debug(f"Tool call logged for {function_name}")
310
+ except Exception as e:
311
+ logger.warning(f"Failed to log tool call for {function_name}: {e}")
312
+
313
+
314
+ def log_tool_response(session_id: str, response: Any) -> None: # noqa: ANN401
315
+ """Log tool response synchronously to the VERIS logging endpoint."""
316
+ api_client = get_api_client()
317
+ endpoint = api_client.get_log_tool_response_endpoint(session_id)
318
+
319
+ payload = {
320
+ "response": json.dumps(response, default=str),
321
+ }
322
+
323
+ try:
324
+ api_client.post(endpoint, payload)
325
+ logger.debug("Tool response logged")
326
+ except Exception as e:
327
+ logger.warning(f"Failed to log tool response: {e}")
328
+
329
+
281
330
  veris = VerisSDK()
veris_ai/utils.py CHANGED
@@ -1,10 +1,19 @@
1
1
  import inspect
2
- import json
3
2
  import sys
4
3
  import types
5
4
  import typing
6
5
  from contextlib import suppress
7
- from typing import Any, ForwardRef, Literal, NotRequired, Required, Union, get_args, get_origin
6
+ from typing import (
7
+ Any,
8
+ ForwardRef,
9
+ Literal,
10
+ NotRequired,
11
+ Required,
12
+ Union,
13
+ get_args,
14
+ get_origin,
15
+ get_type_hints,
16
+ )
8
17
  from collections.abc import Callable
9
18
 
10
19
  from pydantic import BaseModel
@@ -279,12 +288,18 @@ def extract_json_schema(target_type: Any) -> dict: # noqa: PLR0911, PLR0912, C9
279
288
 
280
289
  def get_function_parameters(
281
290
  func: Callable, args: tuple[object, ...], kwargs: dict[str, object]
282
- ) -> str:
291
+ ) -> dict[str, dict[str, str]]:
283
292
  """Get the parameters for a function."""
293
+ params_info = {}
284
294
  sig = inspect.signature(func)
285
295
  bound_args = sig.bind(*args, **kwargs)
286
296
  bound_args.apply_defaults()
287
297
  _ = bound_args.arguments.pop("ctx", None)
288
298
  _ = bound_args.arguments.pop("self", None)
289
299
  _ = bound_args.arguments.pop("cls", None)
290
- return json.dumps(bound_args.arguments)
300
+ for param_name, param_value in bound_args.arguments.items():
301
+ params_info[param_name] = {
302
+ "value": str(param_value),
303
+ "type": str(get_type_hints(func).get(param_name, Any)),
304
+ }
305
+ return params_info
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: veris-ai
3
- Version: 1.9.0
3
+ Version: 1.10.0
4
4
  Summary: A Python package for Veris AI tools
5
5
  Project-URL: Homepage, https://github.com/veris-ai/veris-python-sdk
6
6
  Project-URL: Bug Tracker, https://github.com/veris-ai/veris-python-sdk/issues
@@ -20,6 +20,7 @@ Requires-Dist: opentelemetry-instrumentation>=0.55b1
20
20
  Requires-Dist: opentelemetry-sdk>=1.34.1
21
21
  Requires-Dist: pydantic>=2.0.0
22
22
  Requires-Dist: requests>=2.31.0
23
+ Requires-Dist: tenacity>=9.1.2
23
24
  Provides-Extra: agents
24
25
  Requires-Dist: openai-agents>=0.0.1; extra == 'agents'
25
26
  Provides-Extra: dev
@@ -90,7 +91,6 @@ from veris_ai import Runner, VerisConfig # Requires agents extras
90
91
  |----------|---------|---------|
91
92
  | `VERIS_API_KEY` | API authentication key | None |
92
93
  | `VERIS_MOCK_TIMEOUT` | Request timeout (seconds) | `90.0` |
93
- | `ENV` | Set to `"simulation"` for mock mode | Production |
94
94
 
95
95
  **Advanced Configuration** (rarely needed):
96
96
  - `VERIS_API_URL`: Override default API endpoint (defaults to production)
@@ -158,29 +158,57 @@ End-to-end propagation with the simulator:
158
158
 
159
159
  **Semantic Tag**: `tool-mocking`
160
160
 
161
+ ### Session-Based Activation
162
+
163
+ The SDK uses session-based activation to determine when to enable mocking. Choose one of these methods to set a session ID:
164
+
165
+ **Option 1: Manual Setting**
166
+ ```python
167
+ from veris_ai import veris
168
+
169
+ # Explicitly set a session ID
170
+ veris.set_session_id("your-session-id")
171
+
172
+ # Now decorated functions will use mock responses
173
+ result = await your_mocked_function()
174
+
175
+ # Clear session to disable mocking
176
+ veris.clear_session_id()
177
+ ```
178
+
179
+ **Option 2: Automatic Extraction (FastAPI MCP)**
180
+ ```python
181
+ # When using FastAPI MCP integration, session IDs are
182
+ # automatically extracted from OAuth2 bearer tokens
183
+ veris.set_fastapi_mcp(...)
184
+ # No manual session management needed
185
+ ```
186
+
187
+ **How it works internally**: Regardless of which method you use, session IDs are stored in Python context variables (`contextvars`). This ensures proper isolation between concurrent requests and automatic propagation through the call stack.
188
+
161
189
  ### Core Decorators
162
190
 
163
191
  ```python
164
192
  from veris_ai import veris
165
193
 
166
- # Mock mode: Returns simulated responses in ENV=simulation
194
+ # Mock decorator: Returns simulated responses when session ID is set
167
195
  @veris.mock()
168
196
  async def your_function(param1: str, param2: int) -> dict:
169
197
  """Function documentation for LLM context."""
170
198
  return {"result": "actual implementation"}
171
199
 
172
- # Spy mode: Executes function but logs calls/responses
200
+ # Spy decorator: Executes function and logs calls/responses
173
201
  @veris.spy()
174
202
  async def monitored_function(data: str) -> dict:
175
203
  return process_data(data)
176
204
 
177
- # Stub mode: Returns fixed value in simulation
205
+ # Stub decorator: Returns fixed value in simulation
178
206
  @veris.stub(return_value={"status": "success"})
179
207
  async def get_data() -> dict:
180
208
  return await fetch_from_api()
181
209
  ```
182
210
 
183
- **Behavior**: In simulation mode, decorators intercept calls to mock endpoints. In production, functions execute normally.
211
+ **Behavior**: When a session ID is set, decorators activate their respective behaviors (mock responses, logging, or stubbed values). Without a session ID, functions execute normally.
184
212
 
185
213
  **Implementation**: See [`src/veris_ai/tool_mock.py`](src/veris_ai/tool_mock.py) for decorator logic and API integration.
186
214
 
@@ -0,0 +1,16 @@
1
+ veris_ai/README.md,sha256=Ht1abGu-2_O0ZHJoJC7eAfG5WhO2CstAuV3hXPq1yAs,3875
2
+ veris_ai/__init__.py,sha256=enl_gEa6BQAjWvzCtsn_hFVJVVlJZ_dMsLL--E5W3nU,1907
3
+ veris_ai/agents_wrapper.py,sha256=N-YZ0qvIEJ8rlFZAzVKg6eWKa7I_qIt-khlg_zL-qY8,11931
4
+ veris_ai/api_client.py,sha256=Gu_ovqaW-hZ6yPee2GVconMeg_xOxlt7IKu0HJQNiD0,2192
5
+ veris_ai/models.py,sha256=xKeheSJQle2tBeJG1DsGJzMDwv24p5jECjX6RAa39n4,495
6
+ veris_ai/observability.py,sha256=eSIXmk6fpOAoWM-sDbsvzyUASh1ZwU6tRIPduy09RxY,4206
7
+ veris_ai/tool_mock.py,sha256=rU_ZwYWYIfgiOojEjmi5BdBsNzP3RphLPmMG1pyYUVw,11954
8
+ veris_ai/utils.py,sha256=hJetCiN8Bubhy0nqSoS1C2awN9cdkKuHM1v7YhtwtTs,10066
9
+ veris_ai/jaeger_interface/README.md,sha256=kd9rKcE5xf3EyNaiHu0tjn-0oES9sfaK6Ih-OhhTyCM,2821
10
+ veris_ai/jaeger_interface/__init__.py,sha256=KD7NSiMYRG_2uF6dOLKkGG5lNQe4K9ptEwucwMT4_aw,1128
11
+ veris_ai/jaeger_interface/client.py,sha256=yJrh86wRR0Dk3Gq12DId99WogcMIVbL0QQFqVSevvlE,8772
12
+ veris_ai/jaeger_interface/models.py,sha256=e64VV6IvOEFuzRUgvDAMQFyOZMRb56I-PUPZLBZ3rX0,1864
13
+ veris_ai-1.10.0.dist-info/METADATA,sha256=SRkcA5PGLQ5eNcz-yCNuXMECuRypD6olI9fjbFff-qQ,14471
14
+ veris_ai-1.10.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
15
+ veris_ai-1.10.0.dist-info/licenses/LICENSE,sha256=2g4i20atAgtD5einaKzhQrIB-JrPhyQgD3bC0wkHcCI,1065
16
+ veris_ai-1.10.0.dist-info/RECORD,,
veris_ai/logging.py DELETED
@@ -1,46 +0,0 @@
1
- """Logging utilities for VERIS tool calls and responses."""
2
-
3
- import json
4
- import logging
5
- from typing import Any
6
-
7
- from veris_ai.api_client import get_api_client
8
-
9
- logger = logging.getLogger(__name__)
10
-
11
-
12
- def log_tool_call(
13
- session_id: str,
14
- function_name: str,
15
- parameters: str,
16
- docstring: str,
17
- ) -> None:
18
- """Log tool call synchronously to the VERIS logging endpoint."""
19
- api_client = get_api_client()
20
- endpoint = api_client.get_log_tool_call_endpoint(session_id)
21
- payload = {
22
- "function_name": function_name,
23
- "parameters": json.loads(parameters),
24
- "docstring": docstring,
25
- }
26
- try:
27
- api_client.post(endpoint, payload)
28
- logger.debug(f"Tool call logged for {function_name}")
29
- except Exception as e:
30
- logger.warning(f"Failed to log tool call for {function_name}: {e}")
31
-
32
-
33
- def log_tool_response(session_id: str, response: Any) -> None: # noqa: ANN401
34
- """Log tool response synchronously to the VERIS logging endpoint."""
35
- api_client = get_api_client()
36
- endpoint = api_client.get_log_tool_response_endpoint(session_id)
37
-
38
- payload = {
39
- "response": json.dumps(response, default=str),
40
- }
41
-
42
- try:
43
- api_client.post(endpoint, payload)
44
- logger.debug("Tool response logged")
45
- except Exception as e:
46
- logger.warning(f"Failed to log tool response: {e}")
@@ -1,17 +0,0 @@
1
- veris_ai/README.md,sha256=0EC-yWB8FtqAhtcE5Q204bS1JWJPIvfpp1bPDo6iwwc,3601
2
- veris_ai/__init__.py,sha256=enl_gEa6BQAjWvzCtsn_hFVJVVlJZ_dMsLL--E5W3nU,1907
3
- veris_ai/agents_wrapper.py,sha256=L4llszfyZkG4Xjo8OTeVfm-IIdESAcW51ukxceKc88U,11907
4
- veris_ai/api_client.py,sha256=Gu_ovqaW-hZ6yPee2GVconMeg_xOxlt7IKu0HJQNiD0,2192
5
- veris_ai/logging.py,sha256=ENduOHnc5UmzciTDZDJCZqUOXb5We-bdtwN9f9Qqwl0,1360
6
- veris_ai/models.py,sha256=xKeheSJQle2tBeJG1DsGJzMDwv24p5jECjX6RAa39n4,495
7
- veris_ai/observability.py,sha256=fDtWeUexfzaIQArE5YbWsja8Y-bcE_h0dXQWYbXbupY,4929
8
- veris_ai/tool_mock.py,sha256=L2p6Yg8S98floahDTrf6cnmDqC6Dq3YKA7Q6RRvv7BQ,10253
9
- veris_ai/utils.py,sha256=Ud4k2jKAJ6-nqSsFXIJWYrOmPGmvl5RSp36cQtgnMpg,9781
10
- veris_ai/jaeger_interface/README.md,sha256=kd9rKcE5xf3EyNaiHu0tjn-0oES9sfaK6Ih-OhhTyCM,2821
11
- veris_ai/jaeger_interface/__init__.py,sha256=KD7NSiMYRG_2uF6dOLKkGG5lNQe4K9ptEwucwMT4_aw,1128
12
- veris_ai/jaeger_interface/client.py,sha256=yJrh86wRR0Dk3Gq12DId99WogcMIVbL0QQFqVSevvlE,8772
13
- veris_ai/jaeger_interface/models.py,sha256=e64VV6IvOEFuzRUgvDAMQFyOZMRb56I-PUPZLBZ3rX0,1864
14
- veris_ai-1.9.0.dist-info/METADATA,sha256=8c5TObTTfXNUiV0uTiTUu1sAZs7VOcrki1Q-00sGn_8,13495
15
- veris_ai-1.9.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- veris_ai-1.9.0.dist-info/licenses/LICENSE,sha256=2g4i20atAgtD5einaKzhQrIB-JrPhyQgD3bC0wkHcCI,1065
17
- veris_ai-1.9.0.dist-info/RECORD,,