mirror of https://gitee.com/godoos/godoos.git
11 changed files with 421 additions and 329 deletions
@ -0,0 +1,14 @@ |
|||||
|
# Contributing |
||||
|
We are greating for all improvements, bug fixes and new features if it not break exists behaviour. |
||||
|
|
||||
|
## Code style |
||||
|
Code style described in stylecop ruleset file, checks perform on compile time. All violations of rules breaks project build. |
||||
|
Principal moments: |
||||
|
* use tabs |
||||
|
* private fields named with prefix "_" |
||||
|
|
||||
|
## PR |
||||
|
For PR need: |
||||
|
* Issue described what problem you solve |
||||
|
* Code passed travis build (starts automatically) |
||||
|
* Code is covered by tests |
@ -0,0 +1,32 @@ |
|||||
|
export const chatglmLabels = { |
||||
|
name: "chatglm", |
||||
|
family: "llama", |
||||
|
action: "chat", |
||||
|
models: [ |
||||
|
{ |
||||
|
model: "EntropyYue/chatglm3:6b", |
||||
|
params: { |
||||
|
stream: true, |
||||
|
"stop": [ |
||||
|
"<|system|>", |
||||
|
"<|user|>", |
||||
|
"<|assistant|>" |
||||
|
], |
||||
|
"temperature": 0.7, |
||||
|
"top_k": 5, |
||||
|
"top_p": 0.8 |
||||
|
}, |
||||
|
info: { |
||||
|
engine: "ollama", |
||||
|
from: "ollama", |
||||
|
size: "3.6GB", |
||||
|
desk: "4GB", |
||||
|
cpu: "16GB", |
||||
|
gpu: "8GB", |
||||
|
quant: "q4" |
||||
|
} |
||||
|
}, |
||||
|
], |
||||
|
zhdesc: "ChatGLM是由清华技术成果转化的公司智谱AI发布的开源的、支持中英双语问答的对话语言模型系列,并针对中文进行了优化,该模型基于General Language Model(GLM)架构构建", |
||||
|
endesc: "ChatGLM is an open-source dialogue language model series released by Zhipu AI, a company that transforms technology achievements from Tsinghua University. It supports bilingual Q&A in both Chinese and English and has been optimized for Chinese. The model is built on the General Language Model (GLM) architecture" |
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
export const neuralchatLabels = { |
||||
|
name: "neural-chat", |
||||
|
family: "llama", |
||||
|
action: "chat", |
||||
|
models: [ |
||||
|
{ |
||||
|
model: "neural-chat:latest", |
||||
|
params: { |
||||
|
stream: true, |
||||
|
"num_ctx": 4096, |
||||
|
"stop": [ |
||||
|
"</s>", |
||||
|
"<|im_start|>", |
||||
|
"<|im_end|>" |
||||
|
], |
||||
|
"temperature": 0.7, |
||||
|
"top_k": 5, |
||||
|
"top_p": 0.8 |
||||
|
}, |
||||
|
info: { |
||||
|
engine: "ollama", |
||||
|
from: "ollama", |
||||
|
size: "4.1GB", |
||||
|
desk: "5GB", |
||||
|
cpu: "16GB", |
||||
|
gpu: "8GB", |
||||
|
quant: "q4" |
||||
|
} |
||||
|
}, |
||||
|
], |
||||
|
zhdesc: "基于Mistral的微调模型,具有良好的领域和语言覆盖率。", |
||||
|
endesc: "A fine-tuned model based on Mistral with good coverage of domain and language. " |
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
export const starlinglmLabels = { |
||||
|
name: "starling-lm", |
||||
|
family: "llama", |
||||
|
action: "chat", |
||||
|
models: [ |
||||
|
{ |
||||
|
model: "starling-lm:latest", |
||||
|
params: { |
||||
|
stream: true, |
||||
|
"stop": [ |
||||
|
"<|endoftext|>", |
||||
|
"<|end_of_turn|>", |
||||
|
"Human:", |
||||
|
"Assistant:" |
||||
|
], |
||||
|
"temperature": 0.7, |
||||
|
"top_k": 5, |
||||
|
"top_p": 0.8 |
||||
|
}, |
||||
|
info: { |
||||
|
engine: "ollama", |
||||
|
from: "ollama", |
||||
|
size: "4.1GB", |
||||
|
desk: "5GB", |
||||
|
cpu: "16GB", |
||||
|
gpu: "8GB", |
||||
|
quant: "q4" |
||||
|
} |
||||
|
}, |
||||
|
], |
||||
|
zhdesc: "Starling是一个大型语言模型,通过人工智能反馈的强化学习进行训练,专注于提高聊天机器人的有用性。", |
||||
|
endesc: "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness. " |
||||
|
} |
Loading…
Reference in new issue