Add activity-core LLM endpoint support
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled

This commit is contained in:
2026-06-07 19:24:45 +02:00
parent 1d9fc107ed
commit 14ba47c129
25 changed files with 2082 additions and 18 deletions

View File

@@ -48,3 +48,16 @@ def test_wp_0005_primitives_are_exported_from_package_root():
for name in expected_names:
assert hasattr(llm_connect, name)
assert name in llm_connect.__all__
def test_wp_0006_profile_primitives_are_exported_from_package_root():
expected_names = [
"CUSTODIAN_TRIAGE_BALANCED",
"RuntimeProfile",
"ProfiledLLMAdapter",
"default_runtime_profiles",
]
for name in expected_names:
assert hasattr(llm_connect, name)
assert name in llm_connect.__all__