config.js 1.8 KB
Newer Older
1 2 3 4 5 6 7 8
const fs = require('fs');
const path = require('path');

const configFilePath = path.join(__dirname, '../rep.txt');
const configData = fs.readFileSync(configFilePath, 'utf8');
const template = configData.trim()


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

39 40 41 42 43
            },
            "message": "success"
        }
    } 
}