apple-local-llm 0.0.1

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 (3) hide show
  1. package/README.md +14 -0
  2. package/index.js +3 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # apple-local-llm
2
+
3
+ Call Apple's on-device Foundation Models using the OpenAI Responses API format — no servers, no setup.
4
+
5
+ ## Status
6
+
7
+ 🚧 **Under development** — this package is reserved and not yet functional.
8
+
9
+ ## Coming Soon
10
+
11
+ - Drop-in OpenAI Responses API compatibility
12
+ - Works with Node.js, Electron, and VS Code extensions
13
+ - No localhost server required
14
+ - Automatic fallback when unavailable
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // apple-local-llm - placeholder
2
+ // Full implementation coming soon
3
+ throw new Error("apple-local-llm is not yet implemented. Check back soon!");
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "apple-local-llm",
3
+ "version": "0.0.1",
4
+ "description": "Call Apple's on-device Foundation Models using the OpenAI Responses API format — no servers, no setup.",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "apple",
8
+ "llm",
9
+ "foundation-models",
10
+ "openai",
11
+ "local",
12
+ "on-device",
13
+ "macos"
14
+ ],
15
+ "author": "parkerduff",
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/parkerduff/apple-local-llm"
20
+ }
21
+ }