@llmops/app 0.1.7 → 0.1.8

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
@@ -12829,13 +12829,6 @@ const app$10 = new hono.Hono().get("/requests", zv("query", zod_default.object({
12829
12829
  })), async (c) => {
12830
12830
  const db = c.get("db");
12831
12831
  const query = c.req.valid("query");
12832
- console.log("[Analytics] Request filters:", {
12833
- configId: query.configId,
12834
- variantId: query.variantId,
12835
- environmentId: query.environmentId,
12836
- startDate: query.startDate,
12837
- endDate: query.endDate
12838
- });
12839
12832
  let parsedTags;
12840
12833
  if (query.tags) try {
12841
12834
  parsedTags = JSON.parse(query.tags);
package/dist/index.mjs CHANGED
@@ -12803,13 +12803,6 @@ const app$10 = new Hono().get("/requests", zv("query", zod_default.object({
12803
12803
  })), async (c) => {
12804
12804
  const db = c.get("db");
12805
12805
  const query = c.req.valid("query");
12806
- console.log("[Analytics] Request filters:", {
12807
- configId: query.configId,
12808
- variantId: query.variantId,
12809
- environmentId: query.environmentId,
12810
- startDate: query.startDate,
12811
- endDate: query.endDate
12812
- });
12813
12806
  let parsedTags;
12814
12807
  if (query.tags) try {
12815
12808
  parsedTags = JSON.parse(query.tags);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llmops/app",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "LLMOps application with server and client",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -65,8 +65,8 @@
65
65
  "react-aria-components": "^1.13.0",
66
66
  "react-hook-form": "^7.68.0",
67
67
  "recharts": "^3.6.0",
68
- "@llmops/gateway": "^0.1.7",
69
- "@llmops/core": "^0.1.7"
68
+ "@llmops/core": "^0.1.8",
69
+ "@llmops/gateway": "^0.1.8"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "react": "^19.2.1",