@ailoud/providers 1.0.0-dev.1 → 1.0.0-dev.2

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/README.md +20 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @ailoud/providers
2
+
3
+ The adapters of [AILoud](https://github.com/lorem-dev/ailoud): each port
4
+ declared in [`@ailoud/core`](https://www.npmjs.com/package/@ailoud/core),
5
+ implemented against something real.
6
+
7
+ | Port | Implemented with |
8
+ | ----------------------- | ----------------------------------------------------------- |
9
+ | `AudioTool` | ffmpeg and ffprobe |
10
+ | `TranscriptionProvider` | whisper.cpp |
11
+ | `RecordingStore` | SQLite (`node:sqlite`) with FTS5 search |
12
+ | `Summarizer` | llama.cpp, the Claude CLI, or the Anthropic and OpenAI APIs |
13
+
14
+ These talk to binaries and files on the machine, so they are covered by the
15
+ end-to-end suite rather than by mocks.
16
+
17
+ Published because the CLI depends on it. The interfaces are not stable yet, and
18
+ there is no reason to depend on this package directly.
19
+
20
+ Documentation: <https://lorem-dev.github.io/ailoud/>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ailoud/providers",
3
- "version": "1.0.0-dev.1",
3
+ "version": "1.0.0-dev.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  }
12
12
  },
13
13
  "dependencies": {
14
- "@ailoud/core": "1.0.0-dev.1"
14
+ "@ailoud/core": "1.0.0-dev.2"
15
15
  },
16
16
  "description": "AILoud port implementations: ffmpeg, sqlite, whisper.cpp, and the LLM adapters",
17
17
  "author": "Lorem Dev <contact@lorem.dev>",