Skip to content

Commit

Permalink
feat(base): 开源绝大部分站点
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangsx committed Sep 11, 2023
1 parent e0f673c commit 6ff6276
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 490 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ If you do not want your website to appear here, please raise an issue and I will
| openai | too much |
| jasper | gpt-3.5-turbo, gpt-4 |
| pap | |
| myshell | gpt-3.5-turbo, gpt-4 |
| acytoo | gpt-3.5-turbo |
| google | search |
| www | url |
Expand Down
1 change: 0 additions & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
| openai | too much |
| jasper | gpt-3.5-turbo, gpt-4 |
| pap | |
| myshell | gpt-3.5-turbo, gpt-4 |
| acytoo | gpt-3.5-turbo |
| google | search |
| www | url |
Expand Down
1 change: 0 additions & 1 deletion model/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export enum Site {
OneAPI = 'oneapi',
Jasper = 'jasper',
Pap = 'pap',
MyShell = 'myshell',
AcyToo = 'acytoo',
Google = 'google',
WWW = 'www',
Expand Down
2 changes: 0 additions & 2 deletions model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import { SinCode } from './sincode';
import { OpenAI } from './openai';
import { OneAPI } from './oneapi';
import { Jasper } from './jasper';
import { MyShell } from './myshell';
import { AcyToo } from './acytoo';
import { Google } from './google';
import { WWW } from './www';
Expand Down Expand Up @@ -82,7 +81,6 @@ export class ChatModelFactory {
this.modelMap.set(Site.SinCode, new SinCode({ name: Site.SinCode }));
this.modelMap.set(Site.OpenAI, new OpenAI({ name: Site.OpenAI }));
this.modelMap.set(Site.Jasper, new Jasper({ name: Site.Jasper }));
this.modelMap.set(Site.MyShell, new MyShell({ name: Site.MyShell }));
this.modelMap.set(Site.AcyToo, new AcyToo({ name: Site.AcyToo }));
this.modelMap.set(Site.Google, new Google({ name: Site.Google }));
this.modelMap.set(Site.WWW, new WWW({ name: Site.WWW }));
Expand Down
Loading

0 comments on commit 6ff6276

Please sign in to comment.