File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export function Settings({
9292 </ p >
9393 < Input
9494 type = "password"
95- placeholder = "Enter your OpenAI API key"
95+ placeholder = "Enter your api key"
9696 value = { apiKey }
9797 onChange = { ( e ) => setApiKey ( e . target . value ) }
9898 className = "!bg-neutral-800 !border-neutral-700 !text-neutral-200"
@@ -104,7 +104,7 @@ export function Settings({
104104 </ p >
105105 < Input
106106 type = "text"
107- placeholder = "e.g., https ://api.openai.com /v1"
107+ placeholder = "e.g., http ://127.0.0.1:11434 /v1"
108108 value = { baseUrl }
109109 onChange = { ( e ) => setBaseUrl ( e . target . value ) }
110110 className = "!bg-neutral-800 !border-neutral-700 !text-neutral-200"
@@ -116,8 +116,8 @@ export function Settings({
116116 </ p >
117117 < Input
118118 type = "text"
119- placeholder = "e.g., gpt-4o-mini "
120- value = { customModel || "gpt-4.1 " }
119+ placeholder = "e.g., gemma3:1b "
120+ value = { customModel || "gemma3:1b " }
121121 onChange = { ( e ) => setCustomModel ( e . target . value ) }
122122 className = "!bg-neutral-800 !border-neutral-700 !text-neutral-200"
123123 />
You can’t perform that action at this time.
0 commit comments