remove test messages
This commit is contained in:
parent
5504c61039
commit
62d6a85d36
2 changed files with 0 additions and 3 deletions
|
@ -126,7 +126,6 @@ export default class gemini {
|
||||||
|
|
||||||
let send = async (REQUEST) => {
|
let send = async (REQUEST) => {
|
||||||
// Send the request.
|
// Send the request.
|
||||||
console.log(this.#request[`location`].concat(`:generateContent`), JSON.stringify({method: `POST`, headers: this.#request[`headers`], body: JSON.stringify(REQUEST)}));
|
|
||||||
let CONNECT = await fetch(this.#request[`location`].concat(`:generateContent`), {method: `POST`, headers: this.#request[`headers`], body: JSON.stringify(REQUEST)});
|
let CONNECT = await fetch(this.#request[`location`].concat(`:generateContent`), {method: `POST`, headers: this.#request[`headers`], body: JSON.stringify(REQUEST)});
|
||||||
|
|
||||||
if (CONNECT.ok) {
|
if (CONNECT.ok) {
|
||||||
|
|
2
scripts/external/processor.js
vendored
2
scripts/external/processor.js
vendored
|
@ -11,7 +11,6 @@ export default class processor {
|
||||||
|
|
||||||
async scrape (fields) {
|
async scrape (fields) {
|
||||||
this.data = new scraper ((fields) ? fields : this.targets);
|
this.data = new scraper ((fields) ? fields : this.targets);
|
||||||
console.log(this.data);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async analyze() {
|
async analyze() {
|
||||||
|
@ -19,7 +18,6 @@ export default class processor {
|
||||||
await this.product.attach();
|
await this.product.attach();
|
||||||
await this.product.analyze();
|
await this.product.analyze();
|
||||||
this.product.save();
|
this.product.save();
|
||||||
console.log(this.product.analysis);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
constructor (filter) {
|
constructor (filter) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue