mirror of
https://github.com/katanemo/plano.git
synced 2026-05-01 20:03:40 +02:00
* removing unnecessar setup.py files * updated the cli for debug and access logs * ran the pre-commit locally to fix pull request * fixed bug where if archgw_process is None we didn't handle it gracefully * Apply suggestions from code review Co-authored-by: Adil Hafeez <adil@katanemo.com> * fixed changes based on PR * fixed version not found message * fixed message based on PR feedback * adding poetry lock * fixed pre-commit --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-261.local> Co-authored-by: Adil Hafeez <adil@katanemo.com>
11 lines
361 B
Python
11 lines
361 B
Python
KATANEMO_DOCKERHUB_REPO = "katanemo/archgw"
|
|
KATANEMO_LOCAL_MODEL_LIST = [
|
|
"katanemo/Arch-Guard-cpu",
|
|
"katanemo/Arch-Guard",
|
|
"katanemo/bge-large-en-v1.5",
|
|
]
|
|
SERVICE_NAME_ARCHGW = "archgw"
|
|
SERVICE_NAME_MODEL_SERVER = "model_server"
|
|
SERVICE_ALL = "all"
|
|
MODEL_SERVER_LOG_FILE = "~/archgw_logs/modelserver.log"
|
|
ACCESS_LOG_FILES = "~/archgw_logs/access*"
|