config.js 1.6 KB
Newer Older
1 2
import template from '../rep.txt'
console.info(template)
3 4
export default {
    getData () {
5
        debugger
6 7 8 9
        return {
            "code": 200,
            "data": {
                "id": 128897,
10
                "name": "AI知识库",
11 12 13
                "create_time": 1684920670901,
                "app": "llm_rep",
                "resource_type": "app",
14 15
                "ext": {
                    "mode":"chat",
16 17
                    "model":"chatglm2-6b",
                    "common_gpt_url":"https://api.quickapi.cloud/temporary/gpt",
18 19
                    "api_type":"openai",
                    "robot_img":null,
20 21
                    "api_max_token":"2048",
                    "default_prompt":"介绍下inscode",
22
                    "max_request_len":"10000",
23
                    "prompt_template": template,
24
                    "api_prompt_prefix":"如果用户问题不是在线IDE Inscode相关问题,请直接回答不知道。问题为:",
25
                    "show_profile_setting":false,
26 27 28
                    "index_url":"https://api.quickapi.cloud/api/b/v1/es-api",
                    "index_name":"inscode",
                    "index_type":"es",
29
                    "welcome_text":"你好,欢迎使用InsCode,InsCode是一个一站式的软件开发服务平台,从开发-部署-运维-运营,都可以在 InsCode 轻松完成。  InsCode 的 Ins 是 Inspiration,意思是创作、寻找有灵感的代码。\n注意:结果由AI生成,可能存在不符合实际的联想内容,请注意甄别!",
30 31 32
                },
                

33 34 35 36 37
            },
            "message": "success"
        }
    } 
}