* auto fixes * auto fix pt2 and transitive deps and undefined var checking locals() * manual fixes (ignored or letta-code fixed) * fix circular import
9 lines
346 B
Python
9 lines
346 B
Python
def is_experimental_enabled(feature_name: str, **kwargs) -> bool:
|
|
# if feature_name in ("async_agent_loop", "summarize"):
|
|
# if not (kwargs.get("eligibility", False) and settings.use_experimental):
|
|
# return False
|
|
# return True
|
|
|
|
# Err on safety here, disabling experimental if not handled here.
|
|
return False
|