mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 09:29:38 +02:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
/**
|
|
* Start the Claude text-completion service.
|
|
*
|
|
* Usage: CLAUDE_KEY=sk-... pnpm tsx scripts/run-llm-claude.ts
|
|
*
|
|
* Env:
|
|
* NATS_URL (default: nats://localhost:4222)
|
|
* CLAUDE_KEY (required)
|
|
*/
|
|
import { runMain } from "../packages/flow/src/model/text-completion/claude.js";
|
|
|
|
runMain();
|