From 645c2bc54624c48fff57dbf9db21d0a78498a679 Mon Sep 17 00:00:00 2001 From: Debanjum Date: Sat, 5 Apr 2025 10:09:28 +0530 Subject: [PATCH] Improve Khoj is ready message --- documentation/docs/get-started/setup.mdx | 4 ++-- src/khoj/main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/docs/get-started/setup.mdx b/documentation/docs/get-started/setup.mdx index 2295f06d..e3c1e12f 100644 --- a/documentation/docs/get-started/setup.mdx +++ b/documentation/docs/get-started/setup.mdx @@ -111,7 +111,7 @@ Restart your Khoj server after the first run to ensure all settings are applied By default Khoj is only accessible on the machine it is running. To access Khoj from a remote machine see [Remote Access Docs](/advanced/remote). ::: -Your setup is complete once you see `🌖 Khoj is ready to use` in the server logs on your terminal. +Your setup is complete once you see `🌖 Khoj is ready to engage` in the server logs on your terminal. @@ -211,7 +211,7 @@ On the first run of the above command, you will be prompted to: 1. Create an admin account with an email and secure password 2. Customize the chat models to enable - Keep your [OpenAI](https://platform.openai.com/api-keys), [Anthropic](https://console.anthropic.com/account/keys), [Gemini](https://aistudio.google.com/app/apikey) API keys and [OpenAI](https://platform.openai.com/docs/models), [Anthropic](https://docs.anthropic.com/en/docs/about-claude/models#model-names), [Gemini](https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#gemini-models), [Offline](https://huggingface.co/models?pipeline_tag=text-generation&library=gguf) chat model names handy to set any of them up during first run. -3. Your setup is complete once you see `🌖 Khoj is ready to use` in the server logs on your terminal! +3. Your setup is complete once you see `🌖 Khoj is ready to engage` in the server logs on your terminal! :::tip[Auto Start] diff --git a/src/khoj/main.py b/src/khoj/main.py index 771816ef..47203fc1 100644 --- a/src/khoj/main.py +++ b/src/khoj/main.py @@ -217,7 +217,7 @@ def set_state(args): def start_server(app, host=None, port=None, socket=None): - logger.info("🌖 Khoj is ready to use") + logger.info("🌖 Khoj is ready to engage") if socket: uvicorn.run(app, proxy_headers=True, uds=socket, log_level="debug", use_colors=True, log_config=None) else: