You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cli/commands/init.ts
+23-18Lines changed: 23 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -97,24 +97,29 @@ async function main() {
97
97
},
98
98
});
99
99
100
-
// request.body is the fully transformed OpenAI Chat Completions payload.
101
-
// For the hello.md prompt in the dev environment it looks like:
102
-
//
103
-
// {
104
-
// "model": "gpt-5.4-mini",
105
-
// "reasoning_effort": "low",
106
-
// "temperature": 0.2,
107
-
// "messages": [
108
-
// {
109
-
// "role": "system",
110
-
// "content": "You are a friendly assistant. Be helpful and concise.\nCurrent app context: Welcome screen.\n\nAlways be polite, professional, and concise. Avoid jargon unless the user uses it first."
111
-
// },
112
-
// {
113
-
// "role": "user",
114
-
// "content": "Say hello to World and ask how you can help them today."
115
-
// }
116
-
// ]
117
-
// }
100
+
/*
101
+
request.body is the fully transformed OpenAI Chat Completions payload.
102
+
For the hello.md prompt in the dev environment it looks like:
103
+
104
+
{
105
+
"model": "gpt-5.4-mini",
106
+
"reasoning_effort": "low",
107
+
"temperature": 0.2,
108
+
"messages": [
109
+
{
110
+
"role": "system",
111
+
"content": "You are a friendly assistant. Be helpful and concise.
112
+
Current app context: Welcome screen.
113
+
114
+
Always be polite, professional, and concise. Avoid jargon unless the user uses it first."
115
+
},
116
+
{
117
+
"role": "user",
118
+
"content": "Say hello to World and ask how you can help them today."
0 commit comments