@llmops/sdk 0.5.1-beta.1 → 0.5.1-beta.2

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/dist/index.cjs CHANGED
@@ -29,7 +29,7 @@ const createLLMOps = (config) => {
29
29
  handler,
30
30
  config: Object.freeze(config),
31
31
  provider: () => ({
32
- baseURL: `http://localhost${basePath}/api/genai`,
32
+ baseURL: `http://localhost${basePath}/api/genai/v1`,
33
33
  apiKey: "llmops",
34
34
  fetch: internalFetch
35
35
  })
package/dist/index.mjs CHANGED
@@ -29,7 +29,7 @@ const createLLMOps = (config) => {
29
29
  handler,
30
30
  config: Object.freeze(config),
31
31
  provider: () => ({
32
- baseURL: `http://localhost${basePath}/api/genai`,
32
+ baseURL: `http://localhost${basePath}/api/genai/v1`,
33
33
  apiKey: "llmops",
34
34
  fetch: internalFetch
35
35
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llmops/sdk",
3
- "version": "0.5.1-beta.1",
3
+ "version": "0.5.1-beta.2",
4
4
  "description": "An LLMOps toolkit for TypeScript applications",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -74,8 +74,8 @@
74
74
  "access": "public"
75
75
  },
76
76
  "dependencies": {
77
- "@llmops/app": "^0.5.1-beta.1",
78
- "@llmops/core": "^0.5.1-beta.1"
77
+ "@llmops/app": "^0.5.1-beta.2",
78
+ "@llmops/core": "^0.5.1-beta.2"
79
79
  },
80
80
  "devDependencies": {
81
81
  "@types/express": "^5.0.6",