chore: snapshot in-progress question-gen work before preflight fixes

This commit is contained in:
2026-07-16 04:12:21 -04:00
parent 11a5545f57
commit a4c429b247
39 changed files with 738 additions and 283 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ def _streaming_result(content: str, thinking: str = "") -> tuple:
return (
content,
thinking,
50.0, # ttft_ms
10.0, # max_inter_token_ms
50.0, # ttft_ms
10.0, # max_inter_token_ms
{"prompt_tokens": 10, "completion_tokens": 5},
)
+12 -7
View File
@@ -7,15 +7,20 @@
from __future__ import annotations
import numpy as np
import pytest
from app.tree.index import (
IndexMeta, TreeIndex, L1Node, L1Card,
L2Node, L2Card, L3Node, L3Card,
)
from app.tree.verify import verify_tree
from app.tree.subtitle import SRTEntry, assign_subtitles_voronoi
from app.tree.environment import TreeEnvironment
from app.tree.index import (
IndexMeta,
L1Card,
L1Node,
L2Card,
L2Node,
L3Card,
L3Node,
TreeIndex,
)
from app.tree.subtitle import SRTEntry, assign_subtitles_voronoi
from app.tree.verify import verify_tree
class TestTreeModuleE2E: