llaminate 0.1.2 → 0.1.4
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 +1 -1
- package/dist/build-info.json +2 -2
- package/docs/index.html +1 -1
- package/package.json +5 -1
package/README.md
CHANGED
package/dist/build-info.json
CHANGED
package/docs/index.html
CHANGED
|
@@ -49,7 +49,7 @@ between chat completion APIs across LLM providers.</p>
|
|
|
49
49
|
<p>It's robust at managing prompts, message histories, token usage and integrating
|
|
50
50
|
tools. Ideal for quickly building applications to interact with LLM services,
|
|
51
51
|
that may need to switch between them.</p>
|
|
52
|
-
<pre class="prettyprint source lang-bash"><code>npm
|
|
52
|
+
<pre class="prettyprint source lang-bash"><code>npm i llaminate
|
|
53
53
|
</code></pre>
|
|
54
54
|
<pre class="prettyprint source lang-typescript"><code>import { Llaminate } from "llaminate";
|
|
55
55
|
</code></pre>
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llaminate",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "A simple but powerful library that abstracts LLM chat completions, providing chat history, tokens tracking and tools interfaces.",
|
|
5
5
|
"repository": "github:oliver-moran/llaminate",
|
|
6
|
+
"homepage": "https://oliver-moran.github.io/llaminate/",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/oliver-moran/llaminate/issues"
|
|
9
|
+
},
|
|
6
10
|
"main": "dist/llaminate.min.js",
|
|
7
11
|
"types": "dist/llaminate.d.ts",
|
|
8
12
|
"scripts": {
|