@releasekit/notes 0.6.1 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -644,7 +644,7 @@ var OllamaProvider = class extends BaseLLMProvider {
644
644
  constructor(config = {}) {
645
645
  super();
646
646
  this.baseURL = config.baseURL ?? process.env.OLLAMA_BASE_URL ?? "http://localhost:11434";
647
- this.model = config.model ?? LLM_DEFAULTS.models.ollama;
647
+ this.model = config.model ?? process.env.OLLAMA_MODEL ?? LLM_DEFAULTS.models.ollama;
648
648
  this.apiKey = config.apiKey ?? process.env.OLLAMA_API_KEY;
649
649
  }
650
650
  async complete(prompt, options) {
package/dist/cli.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  parseVersionOutput,
7
7
  runPipeline,
8
8
  saveAuth
9
- } from "./chunk-UCE7GRJL.js";
9
+ } from "./chunk-7EM7VFXZ.js";
10
10
  import {
11
11
  EXIT_CODES,
12
12
  error,
package/dist/index.js CHANGED
@@ -16,7 +16,7 @@ import {
16
16
  processInput,
17
17
  runPipeline,
18
18
  saveAuth
19
- } from "./chunk-UCE7GRJL.js";
19
+ } from "./chunk-7EM7VFXZ.js";
20
20
  import {
21
21
  aggregateToRoot,
22
22
  detectMonorepo,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@releasekit/notes",
3
- "version": "0.6.1",
3
+ "version": "0.7.0",
4
4
  "description": "Release notes and changelog generation with LLM-powered enhancement and flexible templating",
5
5
  "type": "module",
6
6
  "module": "./dist/index.js",