mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
15 lines (12 loc) • 361 B
text/typescript
// ruleid: detect-openai
import OpenAI from "openai";
OPENAI_API_KEY = "asdf"
// ruleid: detect-openai
const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY,
});
// ruleid: detect-openai
const chatCompletion = await openai.chat.completions.create({
messages: [{ role: "user", content: "Say this is a test" }],
model: "gpt-3.5-turbo",
});