diff --git a/src/assets/images/icons/Pin/Active.svg b/src/assets/images/icons/Pin/Active.svg
index 6444d4135..95ed20dd1 100644
--- a/src/assets/images/icons/Pin/Active.svg
+++ b/src/assets/images/icons/Pin/Active.svg
@@ -1,16 +1,12 @@
-
-
\ No newline at end of file
+
diff --git a/src/common/HelpData.tsx b/src/common/HelpData.tsx
index feed84a86..c6a90a4d8 100644
--- a/src/common/HelpData.tsx
+++ b/src/common/HelpData.tsx
@@ -24,8 +24,7 @@ export const triggerInfo: HelpDataProps = {
};
export const searchInfo: HelpDataProps = {
- heading:
- 'Glific provides search functionality to NGO staff to find contacts from a large set of contacts list.',
+ heading: 'Glific provides search functionality to NGO staff to find contacts from a large set of contacts list.',
link: 'https://glific.github.io/docs/docs/Product%20Features/Searches',
};
@@ -105,5 +104,5 @@ export const blockedContactsInfo: HelpDataProps = {
export const assistantsInfo: HelpDataProps = {
heading:
'Assistants can call OpenAI’s models with specific instructions to tune their personality and capabilities. Assistants can access multiple tools in parallel. Assistants can access files in several formats as part of their creation. When using tools, Assistants can also create files (e.g., images, spreadsheets, etc) and cite files they reference in the Messages they create.',
- link: 'https://glific.github.io/docs/docs/Product%20Features/Flows/Flow%20Variables/Flow%20variables%20vs%20Contact%20variables', // Replace with the actual Glific documentation link
+ link: 'https://glific.github.io/docs/docs/Integrations/RAG%20using%20OpenAI%20file%20search%20assistant', // Replace with the actual Glific documentation link
};
diff --git a/src/containers/Assistants/AssistantOptions/AssistantOptions.tsx b/src/containers/Assistants/AssistantOptions/AssistantOptions.tsx
index 297cf10ef..a0b085377 100644
--- a/src/containers/Assistants/AssistantOptions/AssistantOptions.tsx
+++ b/src/containers/Assistants/AssistantOptions/AssistantOptions.tsx
@@ -30,7 +30,8 @@ interface AssistantOptionsProps {
const temperatureInfo =
'Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive.';
-
+const filesInfo =
+ 'Enables the assistant with knowledge from files that you or your users upload. Once a file is uploaded, the assistant automatically decides when to retrieve content based on user requests.';
export const AssistantOptions = ({ currentId, options, setOptions }: AssistantOptionsProps) => {
const [showUploadDialog, setShowUploadDialog] = useState(false);
const [files, setFiles] = useState([]);
@@ -171,6 +172,11 @@ export const AssistantOptions = ({ currentId, options, setOptions }: AssistantOp