langtrain 0.1.11 → 0.1.12
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 +4 -4
- package/dist/cli.d.mts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +10520 -7
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +10531 -8
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +144 -0
- package/dist/index.d.ts +144 -0
- package/dist/index.js +10405 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10402 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/cli.ts +141 -7
- package/src/files.ts +53 -0
- package/src/index.ts +3 -0
- package/src/subscription.ts +45 -0
- package/src/training.ts +63 -0
package/README.md
CHANGED
|
@@ -32,10 +32,10 @@ Langtrain brings the power of **Langvision** (Computer Vision) and **Langtune**
|
|
|
32
32
|
|
|
33
33
|
| Feature | Description |
|
|
34
34
|
| :--- | :--- |
|
|
35
|
-
|
|
|
36
|
-
|
|
|
37
|
-
|
|
|
38
|
-
|
|
|
35
|
+
| **Computer Vision** | Advanced image analysis, object detection, and visual reasoning powered by `Langvision`. |
|
|
36
|
+
| **LLM Optimization** | Fine-tune and optimize language models effortlessly with `Langtune`. |
|
|
37
|
+
| **Unified & Bundled** | A single dependency for your entire AI stack. Zero configuration required. |
|
|
38
|
+
| **Type Safe** | Built with TypeScript for a robust, developer-friendly experience. |
|
|
39
39
|
|
|
40
40
|
## Quick Start
|
|
41
41
|
|
package/dist/cli.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|