TERM | DEFINITION | SOURCE | LINK |
---|---|---|---|
AGI. Artificial General Intelligence | An AGI could learn to accomplish any intellectual task that human beings or animals can perform. Alternatively, AGI has been defined as an autonomous system that surpasses human capabilities in the majority of economically valuable tasks. | Source | |
Adversarial suffix | A string of random seeming characters, to a prompt that makes the LLM significantly more likely to return an unfiltered response. | Source | Demo |
AI. Artificial Intelligence | Artificial intelligence (AI) is the intelligence of machines or software, as opposed to the intelligence of humans or animals. It is a field of study in computer science which develops and studies intelligent machines. | [Source](https://en.wikipedia.org/wiki/Artificial |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
function Login() { | |
document.addEventListener('DOMContentLoaded', function() { | |
// Shortcuts to DOM Elements. | |
this.signInButton = document.getElementById('demo-sign-in-button'); | |
this.signOutButton = document.getElementById('demo-sign-out-button'); | |
this.nameContainer = document.getElementById('demo-name-container'); | |
this.uidContainer = document.getElementById('demo-uid-container'); | |
this.deleteButton = document.getElementById('demo-delete-button'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Modules imports | |
const express = require('express'); | |
const cookieParser = require('cookie-parser'); | |
const crypto = require('crypto'); | |
// Load config file | |
const config = require('./config.json'); | |
// Firebase Setup | |
const admin = require('firebase-admin'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Simple JavaScript Inheritance | |
* By John Resig http://ejohn.org/ | |
* MIT Licensed. | |
*/ | |
// Inspired by base2 and Prototype | |
(function(){ | |
var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/; | |
// The base Class implementation (does nothing) | |
this.Class = function(){}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#holder").bind('dragover',function(){return false;}).bind('drop', function(e){ | |
var holder= this; | |
e = (e&&e.originalEvent?e.originalEvent:window.event) || e; | |
if(e.preventDefault){ | |
e.preventDefault(); | |
} | |
var files = (e.files||e.dataTransfer.files); | |
var s = ""; |