Coverage for src \ truenex_memory \ discovery \ __init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.14.0, created at 2026-05-19 10:21 +0200
« prev ^ index » next coverage.py v7.14.0, created at 2026-05-19 10:21 +0200
1"""Agent discovery - find projects, docs, servers from local agent clients."""
3from truenex_memory.discovery.agent_discovery import (
4 AgentRoot,
5 CandidateDocument,
6 CandidateProject,
7 DiscoveryReport,
8 ServerAlias,
9 discover_from_agents,
10)
11from truenex_memory.discovery.source_catalog import (
12 CatalogEntry,
13 SourceCatalog,
14 candidate_to_entry,
15 default_catalog_path,
16 entries_to_dict,
17 format_entries,
18 report_to_entries,
19 source_id,
20)
22__all__ = [
23 "AgentRoot",
24 "CandidateDocument",
25 "CandidateProject",
26 "CatalogEntry",
27 "DiscoveryReport",
28 "ServerAlias",
29 "SourceCatalog",
30 "candidate_to_entry",
31 "default_catalog_path",
32 "discover_from_agents",
33 "entries_to_dict",
34 "format_entries",
35 "report_to_entries",
36 "source_id",
37]