Connie-Wild
commited on
Commit
·
99a3dfb
1
Parent(s):
bfefc44
typing
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
import requests
|
|
|
3 |
|
4 |
|
5 |
# 定数定義
|
@@ -30,7 +31,7 @@ def get_model_api_info(model_name: str) -> dict:
|
|
30 |
except:
|
31 |
return {}
|
32 |
|
33 |
-
def is_architecture_supported(architecture: str) ->
|
34 |
"""
|
35 |
llama.cppのソースコード内に指定アーキテクチャが含まれているかチェックする。
|
36 |
|
|
|
1 |
import gradio as gr
|
2 |
import requests
|
3 |
+
from typing import Optional
|
4 |
|
5 |
|
6 |
# 定数定義
|
|
|
31 |
except:
|
32 |
return {}
|
33 |
|
34 |
+
def is_architecture_supported(architecture: str) -> Optional[bool]:
|
35 |
"""
|
36 |
llama.cppのソースコード内に指定アーキテクチャが含まれているかチェックする。
|
37 |
|