()
| 42 | |
| 43 | @lru_cache(maxsize=None) |
| 44 | def get_env_start_args(): |
| 45 | from lightllm.server.core.objs.start_args_type import StartArgs |
| 46 | |
| 47 | start_args: StartArgs = json.loads(os.environ["LIGHTLLM_START_ARGS"]) |
| 48 | start_args: StartArgs = EasyDict(start_args) |
| 49 | return start_args |
| 50 | |
| 51 | |
| 52 | @lru_cache(maxsize=None) |
no outgoing calls