mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-16 11:20:10 +01:00
fixed bad import resulted in error
This commit is contained in:
parent
b7ee0b27f4
commit
00cbe0ac7a
@ -1,16 +1,18 @@
|
||||
import TextAreaBlock from "@/components/Generic/Blocks/TextAreaBlock";
|
||||
import EnableSystemPrompt from "./EnableSystemPrompt";
|
||||
import { C } from "../../../../../dist/assets/index-cf7f0eac";
|
||||
import CheckBoxBlock from "@/components/Generic/Blocks/CheckBoxBlock";
|
||||
|
||||
export default function InputsFeature({ workspace, config }) {
|
||||
console.log("workspace: ", workspace);
|
||||
console.log("config: ", config);
|
||||
return (
|
||||
<div className="flex flex-col gap-4 mt-4">
|
||||
<EnableSystemPrompt workspace={workspace} config={config} />
|
||||
<EnableSystemPrompt workspace={workspace} config={config} />
|
||||
<TextAreaBlock workspace={workspace} />
|
||||
<CheckBoxBlock workspace={workspace} label="override workspace prompt" inline name="systemPrompt"/>
|
||||
<CheckBoxBlock
|
||||
workspace={workspace}
|
||||
label="override workspace prompt"
|
||||
inline
|
||||
name="systemPrompt"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user