@eldrforge/ai-service 0.1.15 → 0.1.17
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.
- package/LICENSE +1 -1
- package/README.md +7 -7
- package/dist/index.js +291 -72
- package/dist/index.js.map +1 -1
- package/dist/src/tools/commit-tools.d.ts.map +1 -1
- package/examples/README.md +3 -3
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commit-tools.d.ts","sourceRoot":"","sources":["../../../src/tools/commit-tools.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAe,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"commit-tools.d.ts","sourceRoot":"","sources":["../../../src/tools/commit-tools.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAe,MAAM,SAAS,CAAC;AAKjD;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,IAAI,EAAE,CAY1C"}
|
package/examples/README.md
CHANGED
|
@@ -310,11 +310,11 @@ After exploring these examples:
|
|
|
310
310
|
|
|
311
311
|
- [Main README](../README.md) - Full API documentation
|
|
312
312
|
- [OpenAI API Docs](https://platform.openai.com/docs) - OpenAI reference
|
|
313
|
-
- [kodrdriv](https://github.com/
|
|
313
|
+
- [kodrdriv](https://github.com/grunnverk/kodrdriv) - Full automation toolkit
|
|
314
314
|
|
|
315
315
|
## Questions or Issues?
|
|
316
316
|
|
|
317
|
-
- 🐛 [Report bugs](https://github.com/
|
|
318
|
-
- 💬 [Discussions](https://github.com/
|
|
317
|
+
- 🐛 [Report bugs](https://github.com/grunnverk/ai-service/issues)
|
|
318
|
+
- 💬 [Discussions](https://github.com/grunnverk/ai-service/discussions)
|
|
319
319
|
- 📖 [Documentation](../README.md)
|
|
320
320
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eldrforge/ai-service",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "AI-powered content generation for automation - OpenAI integration with structured prompts",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
],
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/
|
|
19
|
+
"url": "git+https://github.com/grunnverk/ai-service.git"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "npm run lint && tsc --noEmit && vite build",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"commit-messages",
|
|
41
41
|
"release-notes"
|
|
42
42
|
],
|
|
43
|
-
"author": "
|
|
43
|
+
"author": "Tim O'Brien <tobrien@discursive.com>",
|
|
44
44
|
"license": "Apache-2.0",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@eldrforge/git-tools": "^0.1.
|
|
46
|
+
"@eldrforge/git-tools": "^0.1.16",
|
|
47
47
|
"@riotprompt/riotprompt": "^0.0.10",
|
|
48
48
|
"openai": "^6.3.0"
|
|
49
49
|
},
|