Skip to content

Commit 5cd3abd

Browse files
Update src/core/llm/generateIssueContent.ts
Co-authored-by: Copilot <[email protected]>
1 parent 49d3850 commit 5cd3abd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/llm/generateIssueContent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { TodoItem } from '../../parser/types';
33
import OpenAI from 'openai';
44

55
const openai = new OpenAI({
6-
apiKey: process.env.OPENAI_API_KEY || '', // ou core.getInput('openai-api-key')
6+
apiKey: process.env.OPENAI_API_KEY || '', // or core.getInput('openai-api-key')
77
});
88

99
export async function generateIssueTitleAndBodyLLM(todo: TodoItem): Promise<{ title: string; body: string }> {

0 commit comments

Comments
 (0)