|
import platform |
|
from typing import List |
|
|
|
|
|
def show_system_info(): |
|
try: |
|
print(f"Running on {platform.system()} platform") |
|
print(f"OS: {platform.platform()}") |
|
print(f"Processor: {platform.processor()}") |
|
except Exception as ex: |
|
print(f"Error ocurred while getting system information {ex}") |
|
|
|
|
|
def get_models_from_text_file(file_path: str) -> List: |
|
models = [] |
|
with open(file_path, "r") as file: |
|
lines = file.readlines() |
|
for repo_id in lines: |
|
if repo_id.strip() != "": |
|
models.append(repo_id.strip()) |
|
return models |
|
|