MCPcopy
hub / github.com/crewAIInc/crewAI / get

Method get

lib/crewai/src/crewai/a2a/auth/utils.py:52–55  ·  view source on GitHub ↗

Retrieve an auth scheme by key.

(self, key: str)

Source from the content-addressed store, hash-verified

50 self._store[key] = auth
51
52 def get(self, key: str) -> ClientAuthScheme | None:
53 """Retrieve an auth scheme by key."""
54 with self._lock:
55 return self._store.get(key)
56
57 def __setitem__(self, key: str, value: ClientAuthScheme | None) -> None:
58 with self._lock:

Callers 15

_filter_response_headersFunction · 0.45
select_modelFunction · 0.45
download_dataFunction · 0.45
get_provider_dataFunction · 0.45
_entry_idFunction · 0.45
_entity_iconFunction · 0.45
_top_level_entityMethod · 0.45
_refresh_treeMethod · 0.45
_make_labelMethod · 0.45
_show_detailMethod · 0.45
_render_overviewMethod · 0.45

Calls

no outgoing calls