MCPcopy Create free account
hub / github.com/SLiCAP/SLiCAP_python / available_models

Function available_models

SLiCAP/schematic/component_item.py:207–210  ·  view source on GitHub ↗

Return the SLiCAP model(s) for this symbol — at most one (data-model).

(symbol_name: str)

Source from the content-addressed store, hash-verified

205
206
207def available_models(symbol_name: str) -> list[str]:
208 """Return the SLiCAP model(s) for this symbol — at most one (data-model)."""
209 model = SYMBOL_MODEL.get(symbol_name, "")
210 return [model] if model else []
211
212
213def params_for_symbol(symbol_name: str) -> dict[str, str]:

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected