Add the security notice to LLM integration libraries
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run

This commit is contained in:
Namhyeon Go 2024-11-25 20:55:47 +09:00
parent b1428867dc
commit 8ddff1cf94
3 changed files with 20 additions and 2 deletions

View File

@ -1,6 +1,11 @@
// anthropic.js // anthropic.js
// Namhyeon Go <abuse@catswords.net>
// https://github.com/gnh1201/welsonjs // https://github.com/gnh1201/welsonjs
// Anthropic API documentation: https://docs.anthropic.com/en/api/getting-started //
// ***SECURITY NOTICE***
// Anthropic/Claude requires an internet connection. Data may be transmitted externally. Users must also comply with the terms of use and the privacy policy.
// - Privacy Policy: https://www.anthropic.com/legal/privacy
//
var FILE = require("lib/file"); var FILE = require("lib/file");
var HTTP = require("lib/http"); var HTTP = require("lib/http");

View File

@ -1,3 +1,11 @@
// chatgpt.js
// Namhyeon Go <abuse@catswords.net>
// https://github.com/gnh1201/welsonjs
//
// ***SECURITY NOTICE***
// ChatGPT requires an internet connection. Data may be transmitted externally. Users must also comply with the terms of use and the privacy policy.
// - Privacy Policy: https://openai.com/policies/row-privacy-policy/
//
var FILE = require("lib/file"); var FILE = require("lib/file");
var HTTP = require("lib/http"); var HTTP = require("lib/http");

View File

@ -1,6 +1,11 @@
// groq.js // groq.js
// Namhyeon Go <abuse@catswords.net>
// https://github.com/gnh1201/welsonjs // https://github.com/gnh1201/welsonjs
// Groq API documentation: https://console.groq.com/docs/api-reference //
// ***SECURITY NOTICE***
// Groq requires an internet connection. Data may be transmitted externally. Users must also comply with the terms of use and the privacy policy.
// - Privacy Policy: https://groq.com/privacy-policy/
//
var FILE = require("lib/file"); var FILE = require("lib/file");
var HTTP = require("lib/http"); var HTTP = require("lib/http");