mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-09-27 05:54:08 -03:00
Add a huggingface_api_key setting (Settings UI, HF_TOKEN / HUGGING_FACE_HUB_TOKEN env override) and attach it as a Bearer token to Hugging Face file listing, model card fetching and downloads, so gated and private repositories can be downloaded once the user has accepted the repo terms. - fetch_json/fetch_text accept custom headers; ModelSource gains an auth_headers() hook so handlers stay platform-agnostic - 401/403 from the tree API now explain how to fix (configure token / accept gated terms) - aria2 pre-resolves huggingface.co redirects and strips credentials before handing the signed CDN URL to aria2, mirroring the CivitAI handling so the token never leaks to the CDN - settings API exposes huggingface_api_key_set only; the raw key joins _NO_SYNC_KEYS
75 lines
2.0 KiB
Plaintext
75 lines
2.0 KiB
Plaintext
# serializer version: 1
|
|
# name: TestModelLibraryHandlerSnapshots.test_check_model_exists_empty_response
|
|
dict({
|
|
'downloadedVersionIds': list([
|
|
]),
|
|
'modelType': None,
|
|
'success': True,
|
|
'versions': list([
|
|
]),
|
|
})
|
|
# ---
|
|
# name: TestNodeRegistryHandlerSnapshots.test_register_nodes_error_response
|
|
dict({
|
|
'message': '0 nodes registered successfully',
|
|
'success': True,
|
|
})
|
|
# ---
|
|
# name: TestNodeRegistryHandlerSnapshots.test_register_nodes_success_response
|
|
dict({
|
|
'message': '1 nodes registered successfully',
|
|
'success': True,
|
|
})
|
|
# ---
|
|
# name: TestSettingsHandlerSnapshots.test_get_settings_response_format
|
|
dict({
|
|
'messages': list([
|
|
]),
|
|
'settings': dict({
|
|
'civitai_api_key_set': True,
|
|
'huggingface_api_key_set': False,
|
|
'language': 'en',
|
|
'llm_api_key_set': False,
|
|
'other_models_paths_available': False,
|
|
'standalone_mode': False,
|
|
'theme': 'dark',
|
|
}),
|
|
'success': True,
|
|
})
|
|
# ---
|
|
# name: TestSettingsHandlerSnapshots.test_update_settings_success_response
|
|
dict({
|
|
'success': True,
|
|
})
|
|
# ---
|
|
# name: TestUtilityFunctionSnapshots.test_calculate_recipe_fingerprint_various_inputs
|
|
list([
|
|
'',
|
|
'abc123:1.0',
|
|
'abc123:1.0|def456:0.75',
|
|
'abc123:0.5|def456:1.0',
|
|
'abc123:0.8',
|
|
'12345:1.0',
|
|
'',
|
|
'',
|
|
'',
|
|
])
|
|
# ---
|
|
# name: TestUtilityFunctionSnapshots.test_sanitize_folder_name_various_inputs
|
|
dict({
|
|
'': '',
|
|
' spaces ': 'spaces',
|
|
'___underscores___': 'underscores',
|
|
'folder with spaces': 'folder with spaces',
|
|
'folder"with"quotes': 'folder_with_quotes',
|
|
'folder*with*asterisks': 'folder_with_asterisks',
|
|
'folder.with.dots': 'folder.with.dots',
|
|
'folder/with/slashes': 'folder_with_slashes',
|
|
'folder<with>brackets': 'folder_with_brackets',
|
|
'folder?with?questions': 'folder_with_questions',
|
|
'folder\\with\\backslashes': 'folder_with_backslashes',
|
|
'folder|with|pipes': 'folder_with_pipes',
|
|
'normal_folder': 'normal_folder',
|
|
})
|
|
# ---
|