Fix infra and security issues (#6, #7, #15, #16, #22, #25)

This commit is contained in:
Antigravity Agent
2026-05-26 00:43:07 +00:00
parent 29a3450cb7
commit afa632819e
24 changed files with 2112 additions and 251 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ async def test_token_clock_spacing():
# 2. Simulate an LLM streaming 10 tokens
# Using normal temporalize() which should respect the implicit clock mode
for i in range(10):
await engine.temporalize(f"token_{i}")
engine.temporalize(f"token_{i}")
# Check the final timestamp
final_time = engine._timestamps[-1]
@@ -50,7 +50,7 @@ async def test_temporalize_stream():
tokens = ["I", "am", "Solaria", "and", "I", "am", "continuous"]
# Stream the tokens
states = await engine.temporalize_stream(tokens, start_time=start_time)
states = engine.temporalize_stream(tokens, start_time=start_time)
assert len(states) == 7