0.0.25 • Published 8 months ago
@relgen/core v0.0.25
Quick Start
import { createRelgen } from 'relgen';
const relgen = createRelgen({
llm: {
provider: 'openai',
apiKey: process.env.OPENAI_API_KEY,
model: 'gpt-4'
}
});
// Generate release notes for all PRs since the last release
const notes = await relgen.remote.release.describe({
owner: 'org',
repo: 'repo'
});
// Generate PR description
const description = await relgen.remote.pr.describe({
owner: 'org',
repo: 'repo',
num: 123
}, {
write: 'pr' // or 'comment' to post as comment
});
// Auto-label issues
const labels = await relgen.remote.issue.label({
owner: 'org',
repo: 'repo',
num: 456
}, {
write: 'add' // or 'set' to replace existing labels
});
0.0.25
8 months ago
0.0.24
9 months ago
0.0.23
9 months ago
0.0.22
9 months ago
0.0.21
9 months ago
0.0.20
9 months ago
0.0.19
9 months ago
0.0.18
9 months ago
0.0.17
9 months ago
0.0.16
9 months ago
0.0.15
9 months ago
0.0.14
9 months ago
0.0.13
9 months ago
0.0.12
10 months ago
0.0.11
10 months ago
0.0.10
10 months ago
0.0.9
10 months ago
0.0.8
10 months ago
0.0.7
10 months ago
0.0.6
10 months ago
0.0.5
10 months ago
0.0.4
10 months ago
0.0.3
10 months ago
0.0.2
10 months ago
0.0.1
10 months ago