MCPcopy Index your code
hub / github.com/CommonstackAI/UncommonRoute / get

Method get

uncommon_route/scene_store.py:197–199  ·  view source on GitHub ↗

Look up a scene by name (case-insensitive).

(self, name: str)

Source from the content-addressed store, hash-verified

195 logger.error("Failed to save scenes to %s", self._path, exc_info=True)
196
197 def get(self, name: str) -> SceneConfig | None:
198 """Look up a scene by name (case-insensitive)."""
199 return self._scenes.get(name.strip().lower())
200
201 def list(self) -> list[SceneConfig]:
202 """Return all scenes, sorted by name."""

Callers 15

test_persistenceMethod · 0.95
_cmd_sceneFunction · 0.95
resolveMethod · 0.95
registerFunction · 0.45
groupTurnsFunction · 0.45
groupSessionsFunction · 0.45
stratified_3way_splitFunction · 0.45
load_featuresFunction · 0.45
_extract_textFunction · 0.45
mainFunction · 0.45
_summarize_exactFunction · 0.45

Calls

no outgoing calls