chore: snapshot in-progress question-gen work before preflight fixes
This commit is contained in:
@@ -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},
|
||||
)
|
||||
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user