项目文件夹

文件
wehub-resource-sync 426e9eeabd
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
ci / test (push) Has been cancelled
ci / lint-and-format (push) Has been cancelled
ci / build (push) Has been cancelled
ci / dev-startup (push) Has been cancelled
gitleaks / gitleaks (push) Has been cancelled
Markdown Links / Relative Markdown Links (push) Has been cancelled
Quality (Extended) / Homepage Build (PR smoke) (push) Has been cancelled
Quality (Extended) / Comment-only diff guard (push) Has been cancelled
Quality (Extended) / Format + Type Safety Ratchet (push) Has been cancelled
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Has been cancelled
Quality (Extended) / Develop Gate (lint) (push) Has been cancelled
Chat shell gestures / Chat shell gesture + parity e2e (push) Has been cancelled
Cloud Gateway Discord / Test (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Has been cancelled
Build Agent Image / build-and-push (push) Has been cancelled
Dev Smoke / bun run dev onboarding chat (push) Has been cancelled
Dev Smoke / Vite HMR dependency-level smoke (push) Has been cancelled
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Has been cancelled
Publish @elizaos/example-code / check_npm (push) Has been cancelled
Publish @elizaos/example-code / publish_npm (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / verify_version (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / publish_npm (push) Has been cancelled
Sandbox Live Smoke / Sandbox live smoke (push) Has been cancelled
Snap Build & Test / Build Snap (amd64) (push) Has been cancelled
Snap Build & Test / Build Snap (arm64) (push) Has been cancelled
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Has been cancelled
Cloud Gateway Webhook / Test (push) Has been cancelled
Cloud Tests / lint-and-types (push) Has been cancelled
Cloud Tests / unit-tests (push) Has been cancelled
Cloud Tests / integration-tests (push) Has been cancelled
Cloud Tests / e2e-tests (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Apps Worker (Product 2) / Determine environment (push) Has been cancelled
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Has been cancelled
Deploy Eliza Provisioning Worker / Determine environment (push) Has been cancelled
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Has been cancelled
Dev Smoke / Classify changed paths (push) Has been cancelled
supply-chain / sbom (push) Has been cancelled
supply-chain / vulnerability-scan (push) Has been cancelled
Build, Push & Deploy to Phala Cloud / build-and-push (push) Has been cancelled
Test Packaging / Validate Packaging Configs (push) Has been cancelled
Test Packaging / Build & Test PyPI Package (push) Has been cancelled
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Has been cancelled
Test Packaging / Pack & Test JS Tarballs (push) Has been cancelled
UI Fixture E2E / ui-fixture-e2e (push) Has been cancelled
UI Fixture E2E / fixture-e2e (push) Has been cancelled
UI Story Gate / story-gate (push) Has been cancelled
vault-ci / test (macos-latest) (push) Has been cancelled
vault-ci / test (ubuntu-latest) (push) Has been cancelled
vault-ci / test (windows-latest) (push) Has been cancelled
vault-ci / app-core wiring tests (push) Has been cancelled
verify-patches / verify patches/CHECKSUMS.sha256 (push) Has been cancelled
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Has been cancelled
Voice Benchmark Smoke / voice bench smoke summary (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Has been cancelled
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:43:05 +08:00

316 行
11 KiB
TypeScript

/**
* Assembles the `googleGenAIPlugin` object: the plugin's entire surface is a
* `models` map binding each elizaOS `ModelType` (nano/small/medium/large/mega,
* response-handler, action-planner, embedding, image-description) to a handler
* from `./models`. No actions, providers, evaluators, or routes are registered.
*
* `init` validates the API key at startup, `config` mirrors every supported env
* var (both `GOOGLE_*` and generic aliases) into the runtime setting store, and
* `tests` carries a live TestSuite that drives real Gemini calls through
* `runtime.useModel`. The `index.node.ts` / `index.browser.ts` entrypoints
* re-export this for the dual build targets.
*/
import type {
GenerateTextParams,
IAgentRuntime,
ImageDescriptionParams,
Plugin,
ProcessEnvLike,
TestCase,
TestSuite,
TextEmbeddingParams,
} from "@elizaos/core";
import { logger, ModelType } from "@elizaos/core";
import { GoogleGenAI } from "@google/genai";
import { initializeGoogleGenAI, type PluginConfig } from "./init";
import {
handleActionPlanner,
handleImageDescription,
handleResponseHandler,
handleTextEmbedding,
handleTextLarge,
handleTextMedium,
handleTextMega,
handleTextNano,
handleTextSmall,
} from "./models";
import { getApiKey } from "./utils/config";
export type { PluginConfig } from "./init";
export * from "./types";
const TEXT_NANO_MODEL_TYPE = ModelType.TEXT_NANO as string;
const TEXT_MEDIUM_MODEL_TYPE = ModelType.TEXT_MEDIUM as string;
const TEXT_SMALL_MODEL_TYPE = ModelType.TEXT_SMALL as string;
const TEXT_LARGE_MODEL_TYPE = ModelType.TEXT_LARGE as string;
const TEXT_EMBEDDING_MODEL_TYPE = ModelType.TEXT_EMBEDDING as string;
const IMAGE_DESCRIPTION_MODEL_TYPE = ModelType.IMAGE_DESCRIPTION as string;
const TEXT_MEGA_MODEL_TYPE = ModelType.TEXT_MEGA as string;
const RESPONSE_HANDLER_MODEL_TYPE = ModelType.RESPONSE_HANDLER as string;
const ACTION_PLANNER_MODEL_TYPE = ModelType.ACTION_PLANNER as string;
const pluginTests = [
{
name: "google_genai_plugin_tests",
tests: [
{
name: "google_test_api_key_validation",
fn: async (runtime: IAgentRuntime) => {
const apiKey = getApiKey(runtime);
if (!apiKey) {
throw new Error("GOOGLE_GENERATIVE_AI_API_KEY not set");
}
const genAI = new GoogleGenAI({ apiKey });
const modelList = await genAI.models.list();
const models: unknown[] = [];
for await (const model of modelList) {
models.push(model);
}
logger.log(`Available models: ${models.length}`);
},
},
{
name: "google_test_text_embedding",
fn: async (runtime: IAgentRuntime) => {
try {
const embedding = await runtime.useModel(ModelType.TEXT_EMBEDDING, {
text: "Hello, world!",
});
logger.log(`Embedding dimension: ${embedding.length}`);
if (embedding.length === 0) {
throw new Error("Failed to generate embedding");
}
} catch (error) {
// error-policy:J2 context-adding rethrow — log the failing self-test, rethrow.
logger.error(
`Error in test_text_embedding: ${error instanceof Error ? error.message : String(error)}`,
);
throw error;
}
},
},
{
name: "google_test_text_small",
fn: async (runtime: IAgentRuntime) => {
try {
const text = await runtime.useModel(ModelType.TEXT_SMALL, {
prompt: "What is the nature of reality in 10 words?",
});
if (text.length === 0) {
throw new Error("Failed to generate text");
}
logger.log("Generated with TEXT_SMALL:", text);
} catch (error) {
// error-policy:J2 context-adding rethrow — log the failing self-test, rethrow.
logger.error(
`Error in test_text_small: ${error instanceof Error ? error.message : String(error)}`,
);
throw error;
}
},
},
{
name: "google_test_text_large",
fn: async (runtime: IAgentRuntime) => {
try {
const text = await runtime.useModel(ModelType.TEXT_LARGE, {
prompt: "Explain quantum mechanics in simple terms.",
});
if (text.length === 0) {
throw new Error("Failed to generate text");
}
logger.log(
"Generated with TEXT_LARGE:",
`${text.substring(0, 100)}...`,
);
} catch (error) {
// error-policy:J2 context-adding rethrow — log the failing self-test, rethrow.
logger.error(
`Error in test_text_large: ${error instanceof Error ? error.message : String(error)}`,
);
throw error;
}
},
},
{
name: "google_test_image_description",
fn: async (runtime: IAgentRuntime) => {
try {
const result = await runtime.useModel(
ModelType.IMAGE_DESCRIPTION,
"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Vitalik_Buterin_TechCrunch_London_2015_%28cropped%29.jpg/537px-Vitalik_Buterin_TechCrunch_London_2015_%28cropped%29.jpg",
);
if (
result != null &&
typeof result === "object" &&
"title" in result &&
"description" in result
) {
logger.log("Image description:", JSON.stringify(result));
} else {
logger.error(
`Invalid image description result format: ${JSON.stringify(result)}`,
);
}
} catch (error) {
// error-policy:J2 context-adding rethrow — log the failing self-test, rethrow.
logger.error(
`Error in test_image_description: ${error instanceof Error ? error.message : String(error)}`,
);
throw error;
}
},
},
{
name: "google_test_structured_output_via_text_large",
fn: async (runtime: IAgentRuntime) => {
try {
const schema = {
type: "object",
properties: {
name: { type: "string" },
age: { type: "number" },
hobbies: { type: "array", items: { type: "string" } },
},
required: ["name", "age", "hobbies"],
};
const result = await runtime.useModel(ModelType.TEXT_LARGE, {
prompt: "Generate a person profile with name, age, and hobbies.",
responseSchema: schema,
} as GenerateTextParams);
logger.log("Generated structured output:", JSON.stringify(result));
if (!result) {
throw new Error("Generated structured output is empty");
}
} catch (error) {
// error-policy:J2 context-adding rethrow — log the failing self-test, rethrow.
logger.error(
`Error in test_structured_output_via_text_large: ${error instanceof Error ? error.message : String(error)}`,
);
throw error;
}
},
},
] as TestCase[],
},
] as TestSuite[];
function getProcessEnv(): ProcessEnvLike {
if (typeof process === "undefined") {
return {};
}
return process.env as ProcessEnvLike;
}
const env = getProcessEnv();
export const googleGenAIPlugin: Plugin = {
name: "google-genai",
description: "Google Generative AI plugin for Gemini models",
autoEnable: {
envKeys: ["GOOGLE_API_KEY", "GOOGLE_GENERATIVE_AI_API_KEY"],
},
config: {
GOOGLE_GENERATIVE_AI_API_KEY: env.GOOGLE_GENERATIVE_AI_API_KEY ?? null,
GOOGLE_NANO_MODEL: env.GOOGLE_NANO_MODEL ?? null,
GOOGLE_MEDIUM_MODEL: env.GOOGLE_MEDIUM_MODEL ?? null,
GOOGLE_SMALL_MODEL: env.GOOGLE_SMALL_MODEL ?? null,
GOOGLE_LARGE_MODEL: env.GOOGLE_LARGE_MODEL ?? null,
GOOGLE_MEGA_MODEL: env.GOOGLE_MEGA_MODEL ?? null,
GOOGLE_RESPONSE_HANDLER_MODEL: env.GOOGLE_RESPONSE_HANDLER_MODEL ?? null,
GOOGLE_SHOULD_RESPOND_MODEL: env.GOOGLE_SHOULD_RESPOND_MODEL ?? null,
GOOGLE_ACTION_PLANNER_MODEL: env.GOOGLE_ACTION_PLANNER_MODEL ?? null,
GOOGLE_PLANNER_MODEL: env.GOOGLE_PLANNER_MODEL ?? null,
GOOGLE_IMAGE_MODEL: env.GOOGLE_IMAGE_MODEL ?? null,
GOOGLE_EMBEDDING_MODEL: env.GOOGLE_EMBEDDING_MODEL ?? null,
NANO_MODEL: env.NANO_MODEL ?? null,
MEDIUM_MODEL: env.MEDIUM_MODEL ?? null,
SMALL_MODEL: env.SMALL_MODEL ?? null,
LARGE_MODEL: env.LARGE_MODEL ?? null,
MEGA_MODEL: env.MEGA_MODEL ?? null,
RESPONSE_HANDLER_MODEL: env.RESPONSE_HANDLER_MODEL ?? null,
SHOULD_RESPOND_MODEL: env.SHOULD_RESPOND_MODEL ?? null,
ACTION_PLANNER_MODEL: env.ACTION_PLANNER_MODEL ?? null,
PLANNER_MODEL: env.PLANNER_MODEL ?? null,
IMAGE_MODEL: env.IMAGE_MODEL ?? null,
},
async init(config, runtime) {
initializeGoogleGenAI(config as PluginConfig, runtime);
},
models: {
[TEXT_NANO_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: GenerateTextParams,
): Promise<string> => {
return handleTextNano(runtime, params);
},
[TEXT_MEDIUM_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: GenerateTextParams,
): Promise<string> => {
return handleTextMedium(runtime, params);
},
[TEXT_SMALL_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: GenerateTextParams,
): Promise<string> => {
return handleTextSmall(runtime, params);
},
[TEXT_LARGE_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: GenerateTextParams,
): Promise<string> => {
return handleTextLarge(runtime, params);
},
[TEXT_MEGA_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: GenerateTextParams,
): Promise<string> => {
return handleTextMega(runtime, params);
},
[RESPONSE_HANDLER_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: GenerateTextParams,
): Promise<string> => {
return handleResponseHandler(runtime, params);
},
[ACTION_PLANNER_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: GenerateTextParams,
): Promise<string> => {
return handleActionPlanner(runtime, params);
},
[TEXT_EMBEDDING_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: TextEmbeddingParams | string | null,
): Promise<number[]> => {
return handleTextEmbedding(runtime, params);
},
[IMAGE_DESCRIPTION_MODEL_TYPE]: async (
runtime: IAgentRuntime,
params: ImageDescriptionParams | string,
): Promise<{ title: string; description: string }> => {
return handleImageDescription(runtime, params);
},
},
tests: pluginTests,
};
export default googleGenAIPlugin;