From c00a81d9c0884cf1c86e44802bea38701e83c510 Mon Sep 17 00:00:00 2001 From: sree-jith123 Date: Thu, 9 Oct 2025 14:57:42 +0530 Subject: [PATCH 1/2] first.env --- frontend/rust-lib/flowy-ai/dev.env | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/frontend/rust-lib/flowy-ai/dev.env b/frontend/rust-lib/flowy-ai/dev.env index 5cff5dd8589b3..60fb4386cdeba 100644 --- a/frontend/rust-lib/flowy-ai/dev.env +++ b/frontend/rust-lib/flowy-ai/dev.env @@ -1,5 +1,11 @@ +# Set the path to the main binary/executable for the AI application (e.g., chat program) +CHAT_BIN_PATH=/usr/local/bin/your-ai-chat-program -CHAT_BIN_PATH= -LOCAL_AI_MODEL_DIR= -LOCAL_AI_CHAT_MODEL_NAME= -LOCAL_AI_EMBEDDING_MODEL_NAME= +# Set the directory where your local AI models (e.g., Llama, Mistral) are stored +LOCAL_AI_MODEL_DIR=/home/user/models/ai/ + +# Set the specific file name or identifier for the model used for generating chat responses +LOCAL_AI_CHAT_MODEL_NAME=Llama-2-7b-chat.gguf + +# Set the specific file name or identifier for the model used for converting text to vector embeddings +LOCAL_AI_EMBEDDING_MODEL_NAME=bge-small-en-v1.5.bin From 772d98262eff29b4d8f92346a580b6c072e49a4a Mon Sep 17 00:00:00 2001 From: sree-jith123 Date: Thu, 9 Oct 2025 15:22:52 +0530 Subject: [PATCH 2/2] Update dev.env