mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 20:26:49 +00:00
19 lines
537 B
TypeScript
19 lines
537 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { groqMediaUnderstandingProvider } from "./media-understanding-provider.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "groq",
|
|
name: "Groq Provider",
|
|
description: "Bundled Groq provider plugin",
|
|
register(api) {
|
|
api.registerProvider({
|
|
id: "groq",
|
|
label: "Groq",
|
|
docsPath: "/providers/groq",
|
|
envVars: ["GROQ_API_KEY"],
|
|
auth: [],
|
|
});
|
|
api.registerMediaUnderstandingProvider(groqMediaUnderstandingProvider);
|
|
},
|
|
});
|