Add activity-core LLM endpoint support

This commit is contained in:
tegwick 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__