We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49d3850 commit 5cd3abdCopy full SHA for 5cd3abd
src/core/llm/generateIssueContent.ts
@@ -3,7 +3,7 @@ import { TodoItem } from '../../parser/types';
3
import OpenAI from 'openai';
4
5
const openai = new OpenAI({
6
- apiKey: process.env.OPENAI_API_KEY || '', // ou core.getInput('openai-api-key')
+ apiKey: process.env.OPENAI_API_KEY || '', // or core.getInput('openai-api-key')
7
});
8
9
export async function generateIssueTitleAndBodyLLM(todo: TodoItem): Promise<{ title: string; body: string }> {
0 commit comments