Improve Khoj is ready message

This commit is contained in:
Debanjum
2025-04-05 10:09:28 +05:30
parent 6e61ec64a4
commit 645c2bc546
2 changed files with 3 additions and 3 deletions

View File

@@ -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). 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.
</TabItem> </TabItem>
<TabItem value="pip" label="Pip"> <TabItem value="pip" label="Pip">
@@ -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 1. Create an admin account with an email and secure password
2. Customize the chat models to enable 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. - 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] :::tip[Auto Start]

View File

@@ -217,7 +217,7 @@ def set_state(args):
def start_server(app, host=None, port=None, socket=None): 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: if socket:
uvicorn.run(app, proxy_headers=True, uds=socket, log_level="debug", use_colors=True, log_config=None) uvicorn.run(app, proxy_headers=True, uds=socket, log_level="debug", use_colors=True, log_config=None)
else: else: