This gist is now deprecated and moved to janlay/openai-cloudflare. Stay tuned!
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
| # 1 只需要修改 proxy-providers, 将订阅配置到 provider1 这样的分组里面, 添加一个自定义后缀, 用于防止同一个机场下不同协议, | |
| # 节点名称却相同导致的覆盖. 同一机场下如 trojan 订阅和 vless 订阅 节点名称相同, 此时不加后缀, 会被覆盖 | |
| # 同理添加第二, 第三个订阅只需复制 provider1, 修改为 provider2 和其对应 url 和 additional-suffix 字段 | |
| # 2 支持自建节点, 可将自建节点链接添加到 myown, url中, myown 名字最好不要更改, 或者同时修改引用的地方如 chainProxy | |
| # 3 另外注释了一个链式代理配置, 可按需配配. 思路是将需要链式代理的订阅单独配置一个 provider, 然后在分组那里使用 use 字段获取该分组下节点, 并使用 override | |
| # 添加 dialer-proxy 字段 | |
| # 4 修改完成后, 在clash 客户端导入该配置 | |
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
| /*** | |
| * Clash Verge Rev 全局扩展脚本(懒人配置)/ Mihomo Party 覆写脚本 | |
| * URL: https://gist.github.com/dahaha-365/0b8beb613f8d1ee656fe1f21e1a07959 | |
| */ | |
| /** | |
| * 整个脚本的总开关,在Mihomo Party使用的话,请保持为true | |
| * true = 启用 | |
| * false = 禁用 | |
| */ |
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
| # huggingface login | |
| from huggingface_hub import login | |
| login() | |
| # load textencorder in 8bit quantized | |
| from transformers import T5EncoderModel | |
| from diffusers import DiffusionPipeline | |
| import datetime |
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
| # /etc/nginx/.github.test.com.htpasswd | |
| # htpasswd -nb user password | |
| # PLEASE USE YOUR OWN PASSWORD | |
| user:$apr1$zv2GRYuf$vknySgxsj3DfOav6cdRCv. |
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
| # STEP 1: Load | |
| # Load documents using LangChain's DocumentLoaders | |
| # This is from https://langchain.readthedocs.io/en/latest/modules/document_loaders/examples/csv.html | |
| from langchain.document_loaders.csv_loader import CSVLoader | |
| loader = CSVLoader(file_path='./example_data/mlb_teams_2012.csv') | |
| data = loader.load() |
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
| // Website you intended to retrieve for users. | |
| const upstream = 'api.openai.com' | |
| // Custom pathname for the upstream website. | |
| const upstream_path = '/' | |
| // Website you intended to retrieve for users using mobile devices. | |
| const upstream_mobile = upstream | |
| // Countries and regions where you wish to suspend your service. |
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
| #!/bin/bash | |
| # Copyright (c)2022 https://bookfere.com | |
| # This is a batch script for fixing Google Translate and making it available | |
| # in the Chinese mainland. If you experience any problem, visit the page below: | |
| # https://bookfere.com/post/1020.html | |
| set -e | |
| IPS=( | |
| 74.125.137.90 |
NewerOlder