Coder Social home page Coder Social logo

comictest / gpt4free-ts Goto Github PK

View Code? Open in Web Editor NEW

This project forked from xiangsx/gpt4free-ts

0.0 0.0 0.0 450 KB

Providing a free OpenAI GPT-4 API ! This is a replication project for the typescript version of xtekky/gpt4free

License: GNU General Public License v3.0

TypeScript 99.78% Dockerfile 0.22%

gpt4free-ts's Introduction

GPT4Free TypeScript Version ๐Ÿ†“

Providing a free OpenAI GPT-4 API!

English | ไธญๆ–‡ | ๆ—ฅๆœฌ่ชž

Discord Server

You can join our discord: discord.gg/gptgod for further updates. gpt4free Discord

๐Ÿšฉ Reverse target

I suggest you fork this project first. Some websites may go offline at any time.

Still striving to keep updating.

Have implemented models here: If you do not want your website to appear here, please raise an issue and I will remove it immediately. Unfortunately, most of the sites here are no longer available.

Update At 2023-09-10

Site Models
you gpt-3.5-turbo
phind net-gpt-3.5-turbo
forefront gpt-3.5-turbo, claude
mcbbs gpt-3.5-turbo, gpt-3.5-turbo-16k
chatdemo gpt-3.5-turbo, gpt-3.5-turbo-16k
vita gpt-3.5-turbo
skailar gpt-4
fakeopen gpt-3.5-turbo, gpt-3.5-turbo-16k, gpt-4
easychat gpt-4
better gpt-3.5-turbo, gpt-3.5-turbo-16k, gpt-4
pweb gpt-3.5-turbo, gpt-3.5-turbo-16k
bai gpt-3.5-turbo
gra gpt-3.5-turbo, gpt-3.5-turbo-16k
magic gpt-3.5-turbo, gpt-4, claude-instance, claude, claude-100k
chim gpt-3.5-turbo, gpt-3.5-turbo-16k, gpt-4
ram gpt-3.5-turbo-16k
chur gpt-3.5-turbo, gpt-3.5-turbo-16k
xun gpt-3.5-turbo, gpt-3.5-turbo-16k
vvm gpt-3.5-turbo, gpt-3.5-turbo-16k, gpt-4
poef
claude claude-2-100k
cursor gpt-3.5-turbo, gpt-4
chatbase gpt-3.5-turbo
ails gpt-3.5-turbo
sincode gpt-3.5-turbo, gpt-4
openai too much
jasper gpt-3.5-turbo, gpt-4
pap
acytoo gpt-3.5-turbo
google search
www url
ddg search

๐Ÿƒโ€โ™‚๏ธ Run

First of all, you should create file .env.

All operation methods require this step.

http_proxy=http://host:port
rapid_api_key=xxxxxxxxxx
EMAIL_TYPE=temp-email44
DEBUG=0
POOL_SIZE=0
PHIND_POOL_SIZE=0
  • http_proxy: config your proxy if you can not access target website directly; If you dont need proxy, delete this line;
  • forefront use env(this site has been removed):
    • rapid_api_key: you should config this if you use forefront api, this apikey is used for receive register email, get api key here
    • EMAIL_TYPE: temp email type includes temp-email temp-email44 tempmail-lol
      • temp-email: soft limit 100req/days, if over use money, need bind credit card! Very Stable!
      • temp-email44: hard limit 100req/days! Stable!
      • tempmail-lol: nothing need, limit 25request/5min. Not Stable.
    • DEBUG: Valid when use forefront You can set =1 when you run local. show reverse process
    • POOL_SIZE: forefront concurrency size. Keep set=1 until you run it successfully!!! You can engage in {POOL_SIZE} conversations concurrently. More pool size, More conversation can be done simultaneously, But use more RAM
  • phind use env:
    • PHIND_POOL_SIZE: phind concurrency size.You can engage in {POOL_SIZE} conversations concurrently. More pool size, More conversation can be done simultaneously, But use more RAM

Run local ๐Ÿ–ฅ๏ธ

# install module
yarn
# start server
yarn start

Run with docker(Suggest!) ๐Ÿณ

docker run -p 3000:3000 --env-file .env xiangsx/gpt4free-ts:latest

Deploy with docker-compose ๐ŸŽญ

first, you should create file .env; Follow step "Run with docker

deploy

docker-compose up --build -d

Clash+one-api+gpt4free-ts Start with one command ๐Ÿ˜ฎ

gpt4free-ts-deploy

๐Ÿš€ Let's Use GPT4

Find supports model and site http://127.0.0.1:3000/supports [GET]

The same as openai http://127.0.0.1:3000/:site/v1/chat/completions [POST]

The same as openai http://127.0.0.1:3000/v1/chat/completions?site=xxx [POST]

Return when chat complete http://127.0.0.1:3000/ask?prompt=***&model=***&site=*** [POST/GET]

Return with eventstream http://127.0.0.1:3000/ask/stream?prompt=***&model=***&site=*** [POST/GET]

Request Params ๐Ÿ“

  • prompt: your question. It can be a string or jsonstr.
    • example jsonstr:[{"role":"user","content":"hello\n"},{"role":"assistant","content":"Hi there! How can I assist you today?"},{"role":"user","content":"who are you"}]
    • example string: who are you
  • model: default gpt3.5-turbo. model include:gpt4 gpt3.5-turbo net-gpt3.5-turbo gpt-3.5-turbo-16k
  • site: default you. target site, include fakeopen better forefront you chatdemo phind vita

Site Support Model ๐Ÿงฉ

query supports site and models with api 127.0.0.1:3000/supports

[
  {
    "site": "you",
    "models": [
      "gpt-3.5-turbo"
    ]
  },
  ...
]

Response Params ๐Ÿ”™

Response when chat end(/ask):

interface ChatResponse {
    content: string;
    error?: string;
}

Response with stream like, Suggest!!(/ask/stream):

event: message
data: {"content":"I"}

event: done
data: {"content":"'m"}

event: error
data: {"error":"some thind wrong"}

Example๐Ÿ’ก

  1. request to site you with history

req:

127.0.0.1:3000/ask?site=you&prompt=[{"role":"user","content":"hello"},{"role":"assistant","content":"Hi there! How can I assist you today?"},{"role":"user","content":"who are you"}]

res:

{
  "content": "Hi there! How can I assist you today?"
}

127.0.0.1:3000/ask?site=you&prompt=[{"role":"user","content":"ไฝ ๅฅฝ\n"},{"role":"assistant","content":"ไฝ ๅฅฝ๏ผๆœ‰ไป€ไนˆๆˆ‘ๅฏไปฅๅธฎๅŠฉไฝ ็š„ๅ—๏ผŸ"},{"role":"user","content":"ไฝ ๆ˜ฏ่ฐ"}]

  1. request to site you with stream return

req:

127.0.0.1:3000/ask/stream?site=you&prompt=who are you

res:

event: message
data: {"content":"I"}

event: message
data: {"content":"'m"}

event: message
data: {"content":" a"}

event: message
data: {"content":" search"}

event: message
data: {"content":" assistant"}
........
event: done
data: {"content":"done"}

๐Ÿ‘ฅ Chat Group

๐ŸŒŸ Star History

Star History Chart

You may join our discord: discord.gg/gpt4free for further updates. gpt4free Discord

This is a replication project for the typescript version of gpt4free

gpt4free logo

Legal Notice

This repository is not associated with or endorsed by providers of the APIs contained in this GitHub repository. This project is intended for educational purposes only. This is just a little personal project. Sites may contact me to improve their security or request the removal of their site from this repository.

Please note the following:

  1. Disclaimer: The APIs, services, and trademarks mentioned in this repository belong to their respective owners. This project is not claiming any right over them nor is it affiliated with or endorsed by any of the providers mentioned.

  2. Responsibility: The author of this repository is not responsible for any consequences, damages, or losses arising from the use or misuse of this repository or the content provided by the third-party APIs. Users are solely responsible for their actions and any repercussions that may follow. We strongly recommend the users to follow the TOS of the each Website.

  3. Educational Purposes Only: This repository and its content are provided strictly for educational purposes. By using the information and code provided, users acknowledge that they are using the APIs and models at their own risk and agree to comply with any applicable laws and regulations.

  4. Copyright: All content in this repository, including but not limited to code, images, and documentation, is the intellectual property of the repository author, unless otherwise stated. Unauthorized copying, distribution, or use of any content in this repository is strictly prohibited without the express written consent of the repository author.

  5. Indemnification: Users agree to indemnify, defend, and hold harmless the author of this repository from and against any and all claims, liabilities, damages, losses, or expenses, including legal fees and costs, arising out of or in any way connected with their use or misuse of this repository, its content, or related third-party APIs.

  6. Updates and Changes: The author reserves the right to modify, update, or remove any content, information, or features in this repository at any time without prior notice. Users are responsible for regularly reviewing the content and any changes made to this repository.

By using this repository or any code related to it, you agree to these terms. The author is not responsible for any copies, forks, or reuploads made by other users. This is the author's only account and repository. To prevent impersonation or irresponsible actions, you may comply with the GNU GPL license this Repository uses.

gpt4free-ts's People

Contributors

atorber avatar choogoo avatar dnlinyj avatar eltociear avatar hartosha avatar huanlinoto avatar icethecoder avatar neco86 avatar panxiao81 avatar ta-noshii avatar xchwarze avatar xiangsx avatar xiaoyao20084321 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.