more
This commit is contained in:
@@ -136,6 +136,10 @@ const DocumentListPage = ({ perPage }) => {
|
|||||||
{ label: "Associated case name z - a", value: "parentCaseName2" },
|
{ label: "Associated case name z - a", value: "parentCaseName2" },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const handleNovos = (e) => {
|
||||||
|
navigate("/how-to");
|
||||||
|
};
|
||||||
|
|
||||||
function handleNavigate(
|
function handleNavigate(
|
||||||
documentId,
|
documentId,
|
||||||
responseGenerations,
|
responseGenerations,
|
||||||
@@ -188,7 +192,16 @@ const DocumentListPage = ({ perPage }) => {
|
|||||||
<div className="document-list-upper-wrapper">
|
<div className="document-list-upper-wrapper">
|
||||||
<div className="list-upper-left">
|
<div className="list-upper-left">
|
||||||
<div className="toggle-outer">
|
<div className="toggle-outer">
|
||||||
<div className="toggle-header"> Response Verbosity</div>
|
<div className="toggle-header">
|
||||||
|
{" "}
|
||||||
|
<p
|
||||||
|
onClick={handleNovos}
|
||||||
|
href=""
|
||||||
|
className="doclist-toggle-link"
|
||||||
|
>
|
||||||
|
Novos
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
<div className="toggle-box">
|
<div className="toggle-box">
|
||||||
<p className="select-billing-text">Min</p>
|
<p className="select-billing-text">Min</p>
|
||||||
<Toggle value={verbValue} onClick={handleToggle} />
|
<Toggle value={verbValue} onClick={handleToggle} />
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ export const Steps = () => (
|
|||||||
Click <span className="bold-span"> “Upload”.</span>
|
Click <span className="bold-span"> “Upload”.</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="mini-break">
|
<div className="mini-break">
|
||||||
Parsing the document usually takes under 2 minutes, but be patient -
|
Parsing the document for language processing usually takes fewer
|
||||||
it may take up to 5.
|
than 2 minutes, but be patient - it may take up to 5.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -46,8 +46,16 @@ export const Steps = () => (
|
|||||||
<span className="bold-span">GENERATE THE RESPONSE: </span>From the
|
<span className="bold-span">GENERATE THE RESPONSE: </span>From the
|
||||||
Document List View, click the “Generate Responses'' button. Novdraft’s
|
Document List View, click the “Generate Responses'' button. Novdraft’s
|
||||||
Intellidraft AI will generate the response and automatically navigate to
|
Intellidraft AI will generate the response and automatically navigate to
|
||||||
the interactive Document Editor. You can edit the responses and save
|
the interactive Document Editor. Note the Response Novos toggle button -
|
||||||
progress any time by clicking the “Save Changes” button.
|
this controls the amount of logical branching used in forumilting hte
|
||||||
|
response language. You can edit the responses and save progress any time
|
||||||
|
by clicking the “Save Changes” button.
|
||||||
|
</div>
|
||||||
|
<div className="steps-text-wrapper">
|
||||||
|
Novos level: this controls the amount of branching applied in deductive
|
||||||
|
persuasion. At the higher setting, the LLM will generate persuasive
|
||||||
|
rhetoric beyond the statement of an authoritative rule – additional
|
||||||
|
attention will be given to application of the rule to factual scenarios.{" "}
|
||||||
</div>
|
</div>
|
||||||
<div className="steps-text-wrapper">
|
<div className="steps-text-wrapper">
|
||||||
<span className="bold-span">DOWNLOAD YOUR RESPONSE DOCUMENT: </span>
|
<span className="bold-span">DOWNLOAD YOUR RESPONSE DOCUMENT: </span>
|
||||||
|
|||||||
@@ -68,6 +68,10 @@
|
|||||||
.toggle-outer {
|
.toggle-outer {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
border: 1px solid var(--accent-orange-light);
|
||||||
|
margin-right: 12px;
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: var(--background-blue);
|
||||||
}
|
}
|
||||||
|
|
||||||
.toggle-box {
|
.toggle-box {
|
||||||
@@ -81,13 +85,18 @@
|
|||||||
.toggle-header {
|
.toggle-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding-right: 12px;
|
padding-right: 7px;
|
||||||
margin-top: -8px;
|
|
||||||
height: 28px;
|
height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-upper-right {
|
.doclist-toggle-link {
|
||||||
//
|
color: blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.doclist-toggle-link:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
color: orange;
|
||||||
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.document-list-lower-wrapper {
|
.document-list-lower-wrapper {
|
||||||
|
|||||||
Reference in New Issue
Block a user