langtrain 0.1.2 → 0.1.3
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 +5 -5
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="logo.svg" alt="Langtrain Logo" width="120" height="auto" />
|
|
2
|
+
<img src="https://raw.githubusercontent.com/langtrain-ai/langtrain-sdk/main/logo.svg" alt="Langtrain Logo" width="120" height="auto" />
|
|
3
3
|
<h1>Langtrain SDK</h1>
|
|
4
4
|
<p>
|
|
5
5
|
The unified intelligence layer for JavaScript applications. <br/>
|
|
@@ -25,10 +25,10 @@ Langtrain brings the power of **Langvision** (Computer Vision) and **Langtune**
|
|
|
25
25
|
|
|
26
26
|
## Features
|
|
27
27
|
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
28
|
+
- **Computer Vision**: Advanced image analysis, object detection, and visual reasoning.
|
|
29
|
+
- **LLM Optimization**: Fine-tune and optimize language models effortlessly.
|
|
30
|
+
- **Zero-Config Bundling**: Everything is included. No peer dependencies to manage.
|
|
31
|
+
- **Type-Safe**: Written in TypeScript for a robust development experience.
|
|
32
32
|
|
|
33
33
|
## Usage
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langtrain",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Unified JavaScript SDK for Langtrain Ecosystem",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
"llm",
|
|
20
20
|
"finetuning"
|
|
21
21
|
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/langtrain-ai/langtrain-sdk.git"
|
|
25
|
+
},
|
|
22
26
|
"author": "Langtrain AI",
|
|
23
27
|
"license": "MIT",
|
|
24
28
|
"devDependencies": {
|