appclaw-vision 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.
- package/README.md +15 -0
- package/dist/bundle.js +1 -0
- package/dist/src/coordinates.d.ts +29 -0
- package/dist/src/coordinates.d.ts.map +1 -0
- package/dist/src/geminiClient.d.ts +54 -0
- package/dist/src/geminiClient.d.ts.map +1 -0
- package/dist/src/generated/promptB64.d.ts +10 -0
- package/dist/src/generated/promptB64.d.ts.map +1 -0
- package/dist/src/index.d.ts +29 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/instructionParser.d.ts +24 -0
- package/dist/src/instructionParser.d.ts.map +1 -0
- package/dist/src/openaiCompatClient.d.ts +28 -0
- package/dist/src/openaiCompatClient.d.ts.map +1 -0
- package/dist/src/promptCodec.d.ts +5 -0
- package/dist/src/promptCodec.d.ts.map +1 -0
- package/dist/src/prompts.d.ts +7 -0
- package/dist/src/prompts.d.ts.map +1 -0
- package/dist/src/types.d.ts +86 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +46 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# df-vision
|
|
2
|
+
|
|
3
|
+
Gemini-based vision helpers (instruction + screenshot → structured actions / coordinates).
|
|
4
|
+
|
|
5
|
+
**npm:** [`df-vision`](https://www.npmjs.com/package/df-vision) (unscoped). In the Device Farm monorepo this package still lives under `packages/stark-vision`.
|
|
6
|
+
|
|
7
|
+
## Build
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm run build
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm run build:watch # tsc watch only — run full `npm run build` before publish (codegen + tsc + webpack → dist/bundle.js)
|
|
15
|
+
```
|