feat: add site

このコミットが含まれているのは:
xiang 2023-06-13 20:54:45 +08:00
コミット 0104b14b0b
4個のファイルの変更106行の追加6行の削除

ファイルの表示

@ -36,9 +36,9 @@ Have implemented models here:
If you do not want your website to appear here, please raise an issue and I will remove it immediately.
|model|support|status|active time|
|--|--|--|--|
|[ai.mcbbs.gq](https://ai.mcbbs.gq)|gpt3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-06-03|
|[forefront.ai](https://chat.forefront.ai)|👍GPT-4/gpt3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-06-03|
|[you.com](https://you.com)|👍GPT-3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-05-12
|[chatdemo]()|👍gpt3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-06-13|
|[forefront.ai](https://chat.forefront.ai)|👍GPT-4/gpt3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-06-13|
|[you.com](https://you.com)|👍GPT-3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-06-13
|[phind.com](https://www.phind.com/)|GPT-4 / Internet / good search|![Active](https://img.shields.io/badge/Active-grey)|
|[bing.com/chat](https://bing.com/chat)|GPT-4/3.5||
|[poe.com](https://poe.com)| GPT-4/3.5||
@ -104,7 +104,7 @@ docker-compose up --build -d
- 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`
- `site`: default `you`. target site, include `forefront` `you` `mcbbs`
- `site`: default `you`. target site, include `forefront` `you` `chatdemo`
### Response Params 🔙

ファイルの表示

@ -34,7 +34,7 @@
|model|support|status|active time|
|--|--|--|--|
|[ai.mcbbs.gq](https://ai.mcbbs.gq)|gpt3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-06-03|
|[chatdemo]()|👍gpt3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-06-13|
|[forefront.ai](https://chat.forefront.ai)|👍GPT-4/gpt3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-06-03|
|[you.com](you.com)|👍GPT-3.5|![Active](https://img.shields.io/badge/Active-brightgreen)|after 2023-05-12
|[phind.com](https://www.phind.com/)|GPT-4 / Internet / good search|![Active](https://img.shields.io/badge/Active-grey)|
@ -102,7 +102,7 @@ docker-compose up --build -d
- `jsonstr`:包含上下文的json字符串例如`[{"role":"user","content":"你好\n"},{"role":"assistant","content":"你好!有什么我可以帮助你的吗?"},{"role":"user","content":"你是谁"}]`
- `string`: 单次对话 例如:`你是谁`
- `model`: 默认 `gpt3.5-turbo`. 模型:`gpt4` `gpt3.5-turbo`
- `site`: 默认 `you`. 目标网站 `forefront` `you` `mcbbs`
- `site`: 默认 `you`. 目标网站 `forefront` `you` `chatdemo`
### 返回参数 🔙

97
model/chatdemo/index.ts ノーマルファイル
ファイルの表示

@ -0,0 +1,97 @@
import {Chat, ChatOptions, ChatRequest, ChatResponse, ModelType} from "../base";
import {AxiosInstance, AxiosRequestConfig, CreateAxiosDefaults} from "axios";
import {CreateAxiosProxy} from "../../utils/proxyAgent";
import es from "event-stream";
import {ErrorData, Event, EventStream, MessageData, parseJSON} from "../../utils";
import {randomUUID} from "crypto";
import {v4} from "uuid";
import moment from "moment";
interface RealReq {
question: string;
chat_id: string;
timestamp: number;
}
export class ChatDemo extends Chat {
private client: AxiosInstance;
constructor(options?: ChatOptions) {
super(options);
this.client = CreateAxiosProxy({
baseURL: 'https://chat.chatgptdemo.net',
headers: {
'Content-Type': 'application/json',
"accept": "text/event-stream",
"Cache-Control": "no-cache",
"Proxy-Connection": "keep-alive"
}
} as CreateAxiosDefaults);
}
support(model: ModelType): number {
switch (model) {
case ModelType.GPT3p5Turbo:
return 2000;
default:
return 0;
}
}
public async ask(req: ChatRequest): Promise<ChatResponse> {
const stream = new EventStream();
const res = await this.askStream(req, stream);
const result: ChatResponse = {
content: '',
}
return new Promise(resolve => {
stream.read((event, data) => {
switch (event) {
case Event.done:
break;
case Event.message:
result.content += (data as MessageData).content
break;
case Event.error:
result.error = (data as ErrorData).error
break;
}
}, () => {
resolve(result);
})
})
}
public async askStream(req: ChatRequest, stream: EventStream) {
const data: RealReq = {
question: req.prompt,
chat_id: v4(),
timestamp: moment().valueOf(),
};
try {
const res = await this.client.post('/chat_api_stream', data, {
responseType: 'stream',
} as AxiosRequestConfig);
res.data.pipe(es.split(/\r?\n\r?\n/)).pipe(es.map(async (chunk: any, cb: any) => {
const dataStr = chunk.replace('data: ', '');
if (!dataStr) {
stream.end();
return;
}
const data = parseJSON(dataStr, {} as any);
if (!data?.choices) {
stream.write(Event.error, {error: 'not found data.choices'})
stream.end();
return;
}
const [{delta: {content = ""}}] = data.choices;
stream.write(Event.message, {content});
}))
} catch (e: any) {
console.error(e);
stream.write(Event.error, {error: e.message})
stream.end();
}
}
}

ファイルの表示

@ -2,12 +2,14 @@ import {Chat, ChatOptions} from "./base";
import {You} from "./you";
import {Forefrontnew} from "./forefront";
import {Mcbbs} from "./mcbbs";
import {ChatDemo} from "./chatdemo";
export enum Site {
// define new model here
You = 'you',
Forefront = 'forefront',
Mcbbs = 'mcbbs',
ChatDemo = 'chatdemo',
}
export class ChatModelFactory {
@ -25,6 +27,7 @@ export class ChatModelFactory {
this.modelMap.set(Site.You, new You(this.options))
this.modelMap.set(Site.Forefront, new Forefrontnew(this.options))
this.modelMap.set(Site.Mcbbs, new Mcbbs(this.options))
this.modelMap.set(Site.ChatDemo, new ChatDemo(this.options))
}
get(model: Site): Chat | undefined {