MCPcopy Index your code
hub / github.com/TaskingAI/TaskingAI / get_bundle

Function get_bundle

plugin/app/cache/bundle.py:118–125  ·  view source on GitHub ↗

Get a bundles by bundle_id. :param bundle_id: the bundles id. :return: the bundles or None if not found.

(bundle_id: str)

Source from the content-addressed store, hash-verified

116
117
118def get_bundle(bundle_id: str) -> Optional[Bundle]:
119 """
120 Get a bundles by bundle_id.
121
122 :param bundle_id: the bundles id.
123 :return: the bundles or None if not found.
124 """
125 return __bundle_dict.get(bundle_id)
126
127
128def get_bundle_cache() -> List[Dict]:

Callers 5

api_get_bundle_iconFunction · 0.90
load_inputMethod · 0.90
load_defaultMethod · 0.90
to_dictMethod · 0.90

Calls 1

getMethod · 0.45

Tested by

no test coverage detected