diff --git a/lib/anthropic.js b/lib/anthropic.js index 2ca4875..5efad2f 100644 --- a/lib/anthropic.js +++ b/lib/anthropic.js @@ -1,6 +1,11 @@ // anthropic.js +// Namhyeon Go // 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 HTTP = require("lib/http"); diff --git a/lib/chatgpt.js b/lib/chatgpt.js index a391acd..7a0e8fa 100644 --- a/lib/chatgpt.js +++ b/lib/chatgpt.js @@ -1,3 +1,11 @@ +// chatgpt.js +// Namhyeon Go +// 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 HTTP = require("lib/http"); diff --git a/lib/groq.js b/lib/groq.js index b88fa58..fc1c7d9 100644 --- a/lib/groq.js +++ b/lib/groq.js @@ -1,6 +1,11 @@ // groq.js +// Namhyeon Go // 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 HTTP = require("lib/http");