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
| from __future__ import annotations | |
| import logging | |
| import warnings | |
| from collections.abc import Callable, Sequence | |
| from typing import Any, Dict, List, Literal, Optional, Set, Tuple, Union | |
| import numpy as np | |
| import requests | |
| from langchain.pydantic_v1 import BaseModel, Extra, Field, root_validator |
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
| // ==UserScript== | |
| // @name Civitai Blocked Image Revealer | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.1 | |
| // @description Unblocks blocked inapropriate images in https://civitai.com/generate | |
| // @updateUrl https://gist.github.com/FarisHijazi/4538aa9ddc0fb93ee826a4d76458c285 | |
| // @author You | |
| // @match https://civitai.com/* | |
| // @connect orchestration.civitai.com | |
| // @grant GM_xmlhttpRequest |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Web Streams Demo</title> | |
| <link rel="stylesheet" href="https://unpkg.com/mvp.css" /> | |
| </head> | |
| <body> | |
| <main> |
OlderNewer