Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
chatgpt-cloudflare
Advanced tools
ChatGPT API client, compatible with Cloudflare Workers
In order to execute tests that make call to real ChatGPT, please copy dev.vars.default
into .dev.vars
and replace key with the real one.
import { ChatGPTClient, ConversationContext } from "chatgpt-cloudflare";
export interface Env {
OPENAI_API_KEY: string;
}
export default {
async fetch(
request: Request,
env: Env,
ctx: ExecutionContext
): Promise<Response> {
const openAiClient = new ChatGPTClient(env.OPENAI_API_KEY);
const body = (await request.json()) as Record<string, any>;
const context = new ConversationContext();
await openAiClient.getResponse(
{
prompt:
"After this sentence, I will give you some text; please repeat all of it verbatim, but add an exclamation point in its end. \n " +
body.prompt,
systemContext: "You are a helpful assistant.",
},
context
);
const response2 = await openAiClient.getResponse(
{
prompt:
"Please respond with your previous answer, but add one more exclamation mark to it",
},
context
);
const responseText = response2.text;
return new Response(
JSON.stringify({
response: responseText,
})
);
},
};
FAQs
ChatGPT API client, compatible with Cloudflare Workers
The npm package chatgpt-cloudflare receives a total of 2 weekly downloads. As such, chatgpt-cloudflare popularity was classified as not popular.
We found that chatgpt-cloudflare demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.