conduct-cli 0.4.17__tar.gz → 0.4.18__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.
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/PKG-INFO +1 -1
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/pyproject.toml +1 -1
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli/guard.py +1 -1
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli.egg-info/PKG-INFO +1 -1
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/README.md +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/setup.cfg +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/setup.py +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli/__init__.py +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli/api.py +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli/guardmcp.py +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli/main.py +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli.egg-info/SOURCES.txt +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli.egg-info/dependency_links.txt +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli.egg-info/entry_points.txt +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli.egg-info/requires.txt +0 -0
- {conduct_cli-0.4.17 → conduct_cli-0.4.18}/src/conduct_cli.egg-info/top_level.txt +0 -0
|
@@ -274,7 +274,7 @@ def _scan_codex_tokens(transcript_path):
|
|
|
274
274
|
buf = f.read(read_size) + buf
|
|
275
275
|
text = buf.decode("utf-8", errors="ignore")
|
|
276
276
|
# Split; if we haven't reached the start the first fragment may be partial
|
|
277
|
-
parts = text.split("
|
|
277
|
+
parts = text.split("\\n")
|
|
278
278
|
start = 1 if pos > 0 else 0
|
|
279
279
|
for line in reversed(parts[start:]):
|
|
280
280
|
if "token_count" not in line or not line.strip():
|
|
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
|