Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 21 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"format:check": "prettier --check ."
},
"dependencies": {
"ai-kit": "github:bitbaum/ai-kit#v0.6.2",
"@bitbaum/ai-kit": "^0.6.2",
"entities": "^8.0.0",
"next": "16.3.3",
"react": "19.2.8",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/health.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* kivvi, botsmann, hirnli, aoz-housing).
*/

import { createHealthTracker } from "ai-kit";
import { createHealthTracker } from "@bitbaum/ai-kit";

const tracker = createHealthTracker({ downAfter: 3 });

Expand Down
2 changes: 1 addition & 1 deletion src/lib/llm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import fs from "node:fs";
import path from "node:path";
import { freeChain } from "ai-kit";
import { freeChain } from "@bitbaum/ai-kit";
import { callLLM, configuredLinks, noProviderMessage } from "./llm";

/** A chat-completions response carrying `content`. */
Expand Down
2 changes: 1 addition & 1 deletion src/lib/llm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// alongside GROQ_API_KEY and this app gains a second meter; with one key it
// still gets the model-level fallback, which is what rot actually looks like.

import { freeChain, usableChain, type Env, type Link } from "ai-kit";
import { freeChain, usableChain, type Env, type Link } from "@bitbaum/ai-kit";
import { recordLLMFailure, recordLLMSuccess } from "./health";

/** Prefix for this app's per-vendor model overrides (TRUTHSEEKER_GROQ_MODELS…). */
Expand Down