File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ python server.py --pretrained_path fnlp/moss-moon-003-sft
62
62
- [ GODEL] ( https://github.com/microsoft/GODEL )
63
63
- [ GODEL-v1_1-base-seq2seq] ( https://huggingface.co/microsoft/GODEL-v1_1-base-seq2seq )
64
64
- [ GODEL-v1_1-large-seq2seq] ( https://huggingface.co/microsoft/GODEL-v1_1-large-seq2seq )
65
- - [ StableLM]
65
+ - [ StableLM] ( https://github.com/Stability-AI/StableLM )
66
66
- [ stablelm-tuned-alpha-3b] ( https://huggingface.co/stabilityai/stablelm-tuned-alpha-3b )
67
67
- [ stablelm-tuned-alpha-7b] ( https://huggingface.co/stabilityai/stablelm-tuned-alpha-7b )
68
68
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ChatZoo" ,
3
- "version" : " 0.1.3 " ,
3
+ "version" : " 0.1.4 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"serve" : " vue-cli-service serve" ,
Original file line number Diff line number Diff line change 4
4
<!-- <el-drawer :modal="false" title="参数控制" :visible.sync="drawer" direction="ltr" >看看</el-drawer> -->
5
5
<div class =" chat-header clearfix" style =" display : flex ; flex-direction : column ; position :relative ;" >
6
6
<div style =" display : flex ; align-items : center ; justify-content : space-between ; width : 100% ;" >
7
- <div style =" display : flex ; align-items : center ;" >
8
- <h4 style =" width : auto ; margin : 0 ;" >{{ model }}</h4 >
7
+ <div style =" display : flex ; align-items : center ; justify-content : center ; flex : 1 ; " >
8
+ <h4 style =" margin : 0 ;" >{{ model }}</h4 >
9
9
</div >
10
10
<div >
11
11
<el-button type =" danger" icon =" el-icon-delete" size =" mini" @click.prevent =" deleteChatBox" circle ></el-button >
@@ -182,7 +182,10 @@ export default {
182
182
const instance = axios .create ({
183
183
baseURL: ' '
184
184
})
185
- const data = this .dialogue
185
+ const data = {
186
+ " query" : this .dialogue ,
187
+ " params" : {}
188
+ }
186
189
this .loading = true
187
190
console .log (' 连接' , this .url )
188
191
if (this .isiframe ) {
Original file line number Diff line number Diff line change 12
12
<el-input v-model =" form.url" ></el-input >
13
13
</el-form-item >
14
14
<el-form-item >
15
- <el-radio v-model =" form.isiframe" label =" iframe" >iframe </el-radio >
16
- <el-radio v-model =" form.isiframe" label =" box" >box </el-radio >
15
+ <el-radio v-model =" form.isiframe" label =" iframe" >外部网页接入 </el-radio >
16
+ <el-radio v-model =" form.isiframe" label =" box" >本地模型 </el-radio >
17
17
</el-form-item >
18
18
<el-form-item >
19
19
<el-button :loading =" loading" type =" primary" @click.prevent =" register" >
You can’t perform that action at this time.
0 commit comments