Skip to content

Commit 0735167

Browse files
committed
Merge branch 'master' of github.com:sagemathinc/cocalc
2 parents ed5f207 + 737c016 commit 0735167

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/packages/frontend/frame-editors/llm/title-bar-button.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -561,12 +561,11 @@ export default function LanguageModelTitleBarButton({
561561
}
562562

563563
function renderContent() {
564-
const empty = command.trim() == "";
565564
return (
566565
<Space direction="vertical" style={{ width: "800px", maxWidth: "90vw" }}>
567-
<Paragraph type={empty ? "danger" : undefined}>
568-
Describe, what the language model <LLMNameLink model={model} /> should
569-
do. Be specific!
566+
<Paragraph>
567+
Describe what you want the language model{" "}
568+
<LLMNameLink model={model} /> to do. Be specific!
570569
</Paragraph>
571570
<Paragraph ref={describeRef}>
572571
<Input.TextArea
@@ -576,7 +575,6 @@ export default function LanguageModelTitleBarButton({
576575
style={{ flex: 1 }}
577576
placeholder={"What should the language model do..."}
578577
value={command}
579-
status={empty ? "error" : undefined}
580578
onChange={(e) => {
581579
setCommand(e.target.value);
582580
setTag("");

0 commit comments

Comments
 (0)