File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
src/packages/frontend/frame-editors/llm Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -561,12 +561,11 @@ export default function LanguageModelTitleBarButton({
561
561
}
562
562
563
563
function renderContent ( ) {
564
- const empty = command . trim ( ) == "" ;
565
564
return (
566
565
< 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!
570
569
</ Paragraph >
571
570
< Paragraph ref = { describeRef } >
572
571
< Input . TextArea
@@ -576,7 +575,6 @@ export default function LanguageModelTitleBarButton({
576
575
style = { { flex : 1 } }
577
576
placeholder = { "What should the language model do..." }
578
577
value = { command }
579
- status = { empty ? "error" : undefined }
580
578
onChange = { ( e ) => {
581
579
setCommand ( e . target . value ) ;
582
580
setTag ( "" ) ;
You can’t perform that action at this time.
0 commit comments