kavoru 0.9.4 → 0.9.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/features.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kavoru",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "Scaffold a new Kavoru (Elysia + Bun) backend from the official template",
5
5
  "type": "module",
6
6
  "bin": {
package/src/features.ts CHANGED
@@ -774,6 +774,7 @@ function buildDockerAppEnv(
774
774
  lines.push("SENTRY_SPOTLIGHT=http://spotlight:8969/stream");
775
775
  }
776
776
  if (selection.llama) {
777
+ lines.push("LLAMA_ENABLED=true");
777
778
  lines.push("LLAMA_URL=http://llama:11434");
778
779
  lines.push("LLAMA_MODEL=llama3.2");
779
780
  }