mirror of
https://github.com/mudler/LocalAI.git
synced 2026-08-04 20:33:05 -04:00
8 lines
247 B
Python
8 lines
247 B
Python
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
def single_file_load_kwargs(original_config_file: str, from_single_file: bool) -> dict:
|
|
if from_single_file and original_config_file:
|
|
return {"original_config_file": original_config_file}
|
|
return {}
|