From eea1f8ff9afec6b243e35adc6a76da79cdf3d5ae Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 5 Dec 2024 11:34:28 -0800 Subject: [PATCH] spellcheck --- README.md | 5 +++++ arch/tools/cli/core.py | 4 ++-- arch/tools/cli/main.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ba93b800..5442f340 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,11 @@ Start arch gateway, ``` $ archgw up arch_config.yaml +2024-12-05 11:24:51,288 - cli.main - INFO - Starting archgw cli version: 0.1.5 +2024-12-05 11:24:51,825 - cli.utils - INFO - Schema validation successful! +2024-12-05 11:24:51,825 - cli.main - INFO - Starting arch model server and arch gateway +... +2024-12-05 11:25:16,131 - cli.core - INFO - Container is healthy! ``` ### Step 3: Interact with LLM diff --git a/arch/tools/cli/core.py b/arch/tools/cli/core.py index 07944ac3..0ebdcde0 100644 --- a/arch/tools/cli/core.py +++ b/arch/tools/cli/core.py @@ -196,7 +196,7 @@ def start_arch_modelserver(): subprocess.run( ["archgw_modelserver", "restart"], check=True, start_new_session=True ) - log.info("Successfull ran model_server") + log.info("Successfully ran model_server") except subprocess.CalledProcessError as e: log.info(f"Failed to start model_server. Please check archgw_modelserver logs") sys.exit(1) @@ -212,7 +212,7 @@ def stop_arch_modelserver(): ["archgw_modelserver", "stop"], check=True, ) - log.info("Successfull stopped the archgw model_server") + log.info("Successfully stopped the archgw model_server") except subprocess.CalledProcessError as e: log.info(f"Failed to start model_server. Please check archgw_modelserver logs") sys.exit(1) diff --git a/arch/tools/cli/main.py b/arch/tools/cli/main.py index 1aef6eb0..e3995718 100644 --- a/arch/tools/cli/main.py +++ b/arch/tools/cli/main.py @@ -171,7 +171,7 @@ def up(file, path, service): log.info(f"Error: {str(e)}") sys.exit(1) - log.info("Starging arch model server and arch gateway") + log.info("Starting arch model server and arch gateway") # Set the ARCH_CONFIG_FILE environment variable env_stage = {}