mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-06-21 13:30:59 +02:00
improved salesforce description text (#1655)
This commit is contained in:
parent
7746375bfd
commit
93cc5a9e77
@ -221,13 +221,32 @@ const MainSection = () => {
|
|||||||
// formBody={<></>}
|
// formBody={<></>}
|
||||||
formBodyBuilder={TextArrayFieldBuilder({
|
formBodyBuilder={TextArrayFieldBuilder({
|
||||||
name: "requested_objects",
|
name: "requested_objects",
|
||||||
label: "requested_objects:",
|
label: "Specify Salesforce objects to organize by:",
|
||||||
subtext:
|
subtext: (
|
||||||
"Optionally, specify the Salesforce object type you would like us to index by. For example, specifying the object " +
|
<>
|
||||||
"'Lead' will cause us to generate a document based on each Lead. " +
|
<br />
|
||||||
"These documents would contain all the information for this Lead, including its child objects (E.g. associated contacts, companies, etc.). " +
|
Specify the Salesforce object types you want us to index.{" "}
|
||||||
"If no requested objects are specified, we will default to indexing by 'Account'." +
|
<br />
|
||||||
"Make sure to use the singular form of the object (E.g. Opportunity instead of Opportunities)",
|
<br />
|
||||||
|
Click
|
||||||
|
<a
|
||||||
|
href="https://docs.danswer.dev/connectors/salesforce#an_example"
|
||||||
|
className="text-blue-500"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
{" "}
|
||||||
|
here{" "}
|
||||||
|
</a>
|
||||||
|
for an example of how Danswer uses the objects. <br />
|
||||||
|
<br />
|
||||||
|
If unsure, don't specify any objects and Danswer will
|
||||||
|
default to indexing by 'Account'.
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
Hint: Use the singular form of the object name (e.g.,
|
||||||
|
'Opportunity' instead of 'Opportunities').
|
||||||
|
</>
|
||||||
|
),
|
||||||
})}
|
})}
|
||||||
validationSchema={Yup.object().shape({
|
validationSchema={Yup.object().shape({
|
||||||
requested_objects: Yup.array()
|
requested_objects: Yup.array()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user