Skip to content

Commit b2083cb

Browse files
file rename
1 parent 5de2c12 commit b2083cb

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tiny-ai-api",
33
"description": "A customizable and extensible client api for managing conversations and AI interactions, currently supporting the **Google Gemini** API — with flexibility to support any similar AI APIs.",
4-
"version": "1.1.5",
4+
"version": "1.1.6",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",
77
"types": "./dist/index.d.mts",
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"jsonrepair": "^3.12.0",
2020
"object-hash": "^3.0.0",
21-
"tiny-essentials": "^1.3.2"
21+
"tiny-essentials": "^1.11.0"
2222
},
2323
"keywords": [
2424
"ai",
File renamed without changes.

src/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import { TinyGoogleAi, setTinyGoogleAi } from './services/Google.mjs';
2-
import TinyAiInstance from './base.mjs';
2+
import TinyAiInstance from './TinyAiInstance.mjs';
33

44
export { TinyAiInstance, TinyGoogleAi, setTinyGoogleAi };

src/services/Google.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { jsonrepair } from 'jsonrepair';
2-
import TinyAiInstance from '../base.mjs';
2+
import TinyAiInstance from '../TinyAiInstance.mjs';
33

44
/**
55
* Configures the Tiny AI Api to use the Google Gemini API.

0 commit comments

Comments
 (0)