trustgraph/ts/scripts/seed-config.ts

347 lines
12 KiB
TypeScript

/**
* Seed configuration — pushes prompt templates and flow definitions
* needed for the full processing pipeline.
*
* Usage: pnpm seed
* Requires: gateway + config service running
*/
import { BunRuntime } from "@effect/platform-bun";
import * as BunHttpClient from "@effect/platform-bun/BunHttpClient";
import { Config, Effect, Option as O, Schema as S } from "effect";
import { HttpClient, HttpClientRequest, HttpClientResponse } from "effect/unstable/http";
const DEFAULT_GATEWAY_URL = "http://localhost:8088";
class SeedConfigError extends S.TaggedErrorClass<SeedConfigError>()(
"SeedConfigError",
{
operation: S.String,
message: S.String,
},
) {}
const GatewayErrorBody = S.Struct({
message: S.optionalKey(S.String),
});
const ConfigPushResponse = S.Struct({
version: S.optionalKey(S.Number),
error: S.optionalKey(GatewayErrorBody),
});
const stringifyJson = (operation: string, value: unknown) =>
S.encodeUnknownEffect(S.UnknownFromJsonString)(value).pipe(
Effect.mapError((cause) =>
SeedConfigError.make({
operation,
message: String(cause),
})
),
);
const decodeConfigResponse = (operation: string, value: unknown) =>
S.decodeUnknownEffect(ConfigPushResponse)(value).pipe(
Effect.mapError((cause) =>
SeedConfigError.make({
operation,
message: String(cause),
})
),
);
const postJson = Effect.fn("seed-config.postJson")(function* (
gatewayUrl: string,
path: string,
body: unknown,
) {
const bodyText = yield* stringifyJson("encode-request", body);
const request = HttpClientRequest.post(`${gatewayUrl}${path}`, { acceptJson: true }).pipe(
HttpClientRequest.bodyText(bodyText, "application/json"),
);
const response = yield* HttpClient.execute(request).pipe(
Effect.flatMap(HttpClientResponse.filterStatusOk),
Effect.mapError((cause) =>
SeedConfigError.make({
operation: "http-request",
message: String(cause),
})
),
);
const responseText = yield* response.text.pipe(
Effect.mapError((cause) =>
SeedConfigError.make({
operation: "read-response",
message: String(cause),
})
),
);
return yield* S.decodeUnknownEffect(S.UnknownFromJsonString)(responseText).pipe(
Effect.mapError((cause) =>
SeedConfigError.make({
operation: "decode-response-json",
message: String(cause),
})
),
);
});
const pushConfig = Effect.fn("seed-config.pushConfig")(function* (
gatewayUrl: string,
keys: ReadonlyArray<string>,
values: Record<string, unknown>,
) {
const data = yield* postJson(gatewayUrl, "/api/v1/config", {
operation: "put",
keys,
values,
}).pipe(Effect.flatMap((response) => decodeConfigResponse("decode-config-response", response)));
if (data.error !== undefined) {
return yield* SeedConfigError.make({
operation: "config-push",
message: data.error.message ?? "unknown gateway error",
});
}
console.log(` Pushed config [${keys.join("/")}] → version ${data.version ?? "unknown"}`);
});
const main = Effect.fn("seed-config.main")(function* () {
const gatewayUrl = yield* Config.string("GATEWAY_URL").pipe(Config.withDefault(DEFAULT_GATEWAY_URL));
const braveApiKey = yield* Config.redacted("BRAVE_API_KEY").pipe(Config.option);
const hasBraveApiKey = O.isSome(braveApiKey);
console.log("Seeding TrustGraph configuration...\n");
// 1. Prompt templates
console.log("── Prompt Templates ──");
yield* pushConfig(gatewayUrl, ["prompt"], {
"extract-relationships": {
system: "You are a helpful assistant that extracts structured knowledge from text.",
prompt: [
"Study the following text and derive entity relationships.",
"For each relationship, derive the subject, predicate and object.",
"",
"Output as a JSON array of objects with keys:",
"- subject: the subject of the relationship",
"- predicate: the predicate",
"- object: the object of the relationship",
"",
"Here is the text:",
"{text}",
"",
"Requirements:",
"- Respond only with a valid JSON array.",
"- Do not include explanations or markdown formatting.",
"- Example: [{\"subject\": \"Earth\", \"predicate\": \"orbits\", \"object\": \"Sun\"}]",
].join("\n"),
},
"extract-definitions": {
system: "You are a helpful assistant that extracts entity definitions from text.",
prompt: [
"Study the following text and derive definitions for any discovered entities.",
"Do not provide definitions for entities whose definitions are incomplete or unknown.",
"",
"Output as a JSON array of objects with keys:",
"- entity: the name of the entity",
"- definition: English text which defines the entity",
"",
"Here is the text:",
"{text}",
"",
"Requirements:",
"- Respond only with a valid JSON array.",
"- Do not include explanations or markdown formatting.",
"- Do not include null or unknown definitions.",
"- Example: [{\"entity\": \"photosynthesis\", \"definition\": \"The process by which plants convert sunlight into energy\"}]",
].join("\n"),
},
"document-prompt": {
system: "You are a helpful assistant. Use only the provided context to answer questions.",
prompt: [
"Use the following context to answer the question.",
"Do not speculate if the answer is not found in the context.",
"",
"Context:",
"{documents}",
"",
"Question: {query}",
].join("\n"),
},
"kg-prompt": {
system: "You are a helpful assistant that answers questions using knowledge graph data.",
prompt: [
"Use the following knowledge graph information to answer the question.",
"",
"Knowledge:",
"{knowledge}",
"",
"Question: {query}",
].join("\n"),
},
"extract-concepts": {
system: "You extract key concepts and entities from questions.",
prompt: [
"Extract the key concepts and entities from the following question.",
"Return one concept per line, no numbering or bullets.",
"",
"Question: {query}",
].join("\n"),
},
"kg-edge-scoring": {
system: "You are a knowledge graph expert that scores the relevance of graph edges to a query.",
prompt: [
"Given the following question and a list of knowledge graph edges,",
"score each edge for relevance to answering the question.",
"Return a JSON array of objects with 'id' and 'score' (0.0 to 1.0).",
"",
"Question: {query}",
"",
"Edges:",
"{knowledge}",
"",
"Requirements:",
"- Respond only with a valid JSON array.",
"- Example: [{\"id\": \"0\", \"score\": 0.9}, {\"id\": \"1\", \"score\": 0.2}]",
].join("\n"),
},
"graph-rag-synthesize": {
system: "You are a helpful assistant that answers questions using knowledge graph data. Only use the provided context.",
prompt: [
"Use the following knowledge graph relationships to answer the question.",
"Do not speculate if the answer is not found in the context.",
"",
"Knowledge:",
"{context}",
"",
"Question: {query}",
].join("\n"),
},
"document-rag-synthesize": {
system: "You are a helpful assistant. Use only the provided document context to answer questions.",
prompt: [
"Use the following document excerpts to answer the question.",
"Do not speculate if the answer is not found in the context.",
"",
"Documents:",
"{context}",
"",
"Question: {query}",
].join("\n"),
},
});
// 2. Flow definitions (default flow with all topic mappings)
console.log("\n── Flow Definitions ──");
yield* pushConfig(gatewayUrl, ["flows"], {
default: {
topics: {
// Document processing pipeline
"decode-input": "tg.flow.document",
"decode-output": "tg.flow.text-document",
"decode-triples": "tg.flow.triples",
"chunk-input": "tg.flow.text-document",
"chunk-output": "tg.flow.chunk",
"chunk-triples": "tg.flow.triples",
"extract-input": "tg.flow.chunk",
"extract-triples": "tg.flow.triples",
"extract-entity-contexts": "tg.flow.entity-contexts",
// Storage consumers
"store-triples-input": "tg.flow.triples",
"store-graph-embeddings-input": "tg.flow.entity-contexts",
// LLM text completion
"text-completion-request": "tg.flow.text-completion-request",
"text-completion-response": "tg.flow.text-completion-response",
// Prompt service
"prompt-request": "tg.flow.prompt-request",
"prompt-response": "tg.flow.prompt-response",
// Graph RAG
"graph-rag-request": "tg.flow.graph-rag-request",
"graph-rag-response": "tg.flow.graph-rag-response",
// Document RAG
"document-rag-request": "tg.flow.document-rag-request",
"document-rag-response": "tg.flow.document-rag-response",
// Triples query
"triples-request": "tg.flow.triples-request",
"triples-response": "tg.flow.triples-response",
// Agent
"agent-request": "tg.flow.agent-request",
"agent-response": "tg.flow.agent-response",
// Embeddings
"embeddings-request": "tg.flow.embeddings-request",
"embeddings-response": "tg.flow.embeddings-response",
// Graph embeddings query
"graph-embeddings-request": "tg.flow.graph-embeddings-request",
"graph-embeddings-response": "tg.flow.graph-embeddings-response",
// Document embeddings query
"document-embeddings-request": "tg.flow.document-embeddings-request",
"document-embeddings-response": "tg.flow.document-embeddings-response",
// Librarian RPC (for PDF decoder)
"librarian-request": "tg.flow.librarian-request",
"librarian-response": "tg.flow.librarian-response",
// MCP tool invocation
"mcp-tool-request": "tg.flow.mcp-tool-request",
"mcp-tool-response": "tg.flow.mcp-tool-response",
},
},
});
// 3. MCP server configuration (external tool providers)
console.log("\n── MCP Configuration ──");
if (hasBraveApiKey) {
yield* pushConfig(gatewayUrl, ["mcp"], {
"brave-search": yield* stringifyJson("encode-brave-search-mcp", {
url: "http://localhost:8383/mcp",
"remote-name": "brave_web_search",
}),
});
console.log(" Brave Search MCP service configured");
} else {
console.log(" Skipping MCP config (no BRAVE_API_KEY set)");
}
// 4. Agent tool configuration (maps tools to implementations)
console.log("\n── Tool Configuration ──");
const toolConfig: Record<string, string> = {
"knowledge-query": yield* stringifyJson("encode-knowledge-query-tool", {
type: "knowledge-query",
name: "KnowledgeQuery",
description: "Query the knowledge graph for information about entities and their relationships.",
group: ["default"],
}),
"document-query": yield* stringifyJson("encode-document-query-tool", {
type: "document-query",
name: "DocumentQuery",
description: "Search the document library for relevant information using semantic search.",
group: ["default"],
}),
"triples-query": yield* stringifyJson("encode-triples-query-tool", {
type: "triples-query",
name: "TriplesQuery",
description: "Query for specific triples (subject-predicate-object relationships) in the knowledge graph.",
group: ["default"],
}),
};
// Add Brave Search tool if API key is available
if (hasBraveApiKey) {
toolConfig["brave-search"] = yield* stringifyJson("encode-brave-search-tool", {
type: "mcp-tool",
name: "brave-search",
description: "Search the web using Brave Search. Returns web search results including titles, URLs, and descriptions.",
"mcp-tool": "brave-search",
group: ["default"],
arguments: [
{ name: "query", type: "string", description: "The search query" },
],
});
console.log(" Brave Search tool added");
}
yield* pushConfig(gatewayUrl, ["tool"], toolConfig);
console.log("\nConfiguration seeded successfully.");
});
BunRuntime.runMain(main().pipe(Effect.provide(BunHttpClient.layer)));