├── .github └── workflows │ └── release.yml ├── .gitignore ├── .yao └── pack │ ├── build.sh │ └── pack.go ├── LICENSE ├── README.md ├── aigcs ├── summary.ai.yml ├── title.ai.yml └── translate.ai.yml ├── apis ├── doc.http.yao └── user.http.yao ├── app.yao ├── charts └── dashboard.chart.yao ├── connectors └── openai │ ├── gpt-3_5-turbo.conn.yao │ ├── text-embedding-ada-002.conn.yao │ └── whisper-1.conn.yao ├── docker ├── release │ └── README.md └── yao-knowledge-dev │ ├── README.md │ └── compose.yml ├── flows └── app │ └── menu.flow.json ├── forms ├── admin │ └── user.form.yao ├── doc.form.yao ├── setting │ └── doc.form.yao └── user.form.yao ├── icons ├── app.icns ├── app.ico └── app.png ├── langs ├── zh-cn │ └── global.yml └── zh-hk │ └── langs │ └── global.yml ├── logins ├── admin.login.yao └── user.login.yao ├── models ├── admin │ └── user.mod.yao └── user.mod.yao ├── neo └── neo.yml ├── pack.build.yao ├── pack.yao ├── public ├── assets │ ├── index-de5905f0.css │ └── index-fda1dd11.js ├── hacker-bg.jpg ├── index.html ├── space-bg.jpg ├── xiang-fav.svg ├── xiang-w.svg └── xiang.svg ├── scripts ├── doc.js ├── guard.js └── vector.js └── tables ├── admin └── user.tab.yao ├── doc.tab.yao └── user.tab.yao /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/.gitignore -------------------------------------------------------------------------------- /.yao/pack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/.yao/pack/build.sh -------------------------------------------------------------------------------- /.yao/pack/pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/.yao/pack/pack.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/README.md -------------------------------------------------------------------------------- /aigcs/summary.ai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/aigcs/summary.ai.yml -------------------------------------------------------------------------------- /aigcs/title.ai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/aigcs/title.ai.yml -------------------------------------------------------------------------------- /aigcs/translate.ai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/aigcs/translate.ai.yml -------------------------------------------------------------------------------- /apis/doc.http.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/apis/doc.http.yao -------------------------------------------------------------------------------- /apis/user.http.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/apis/user.http.yao -------------------------------------------------------------------------------- /app.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/app.yao -------------------------------------------------------------------------------- /charts/dashboard.chart.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/charts/dashboard.chart.yao -------------------------------------------------------------------------------- /connectors/openai/gpt-3_5-turbo.conn.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/connectors/openai/gpt-3_5-turbo.conn.yao -------------------------------------------------------------------------------- /connectors/openai/text-embedding-ada-002.conn.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/connectors/openai/text-embedding-ada-002.conn.yao -------------------------------------------------------------------------------- /connectors/openai/whisper-1.conn.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/connectors/openai/whisper-1.conn.yao -------------------------------------------------------------------------------- /docker/release/README.md: -------------------------------------------------------------------------------- 1 | # yao-knowledge 2 | -------------------------------------------------------------------------------- /docker/yao-knowledge-dev/README.md: -------------------------------------------------------------------------------- 1 | # yao-knowledge 2 | -------------------------------------------------------------------------------- /docker/yao-knowledge-dev/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/docker/yao-knowledge-dev/compose.yml -------------------------------------------------------------------------------- /flows/app/menu.flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/flows/app/menu.flow.json -------------------------------------------------------------------------------- /forms/admin/user.form.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/forms/admin/user.form.yao -------------------------------------------------------------------------------- /forms/doc.form.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/forms/doc.form.yao -------------------------------------------------------------------------------- /forms/setting/doc.form.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/forms/setting/doc.form.yao -------------------------------------------------------------------------------- /forms/user.form.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/forms/user.form.yao -------------------------------------------------------------------------------- /icons/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/icons/app.icns -------------------------------------------------------------------------------- /icons/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/icons/app.ico -------------------------------------------------------------------------------- /icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/icons/app.png -------------------------------------------------------------------------------- /langs/zh-cn/global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/langs/zh-cn/global.yml -------------------------------------------------------------------------------- /langs/zh-hk/langs/global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/langs/zh-hk/langs/global.yml -------------------------------------------------------------------------------- /logins/admin.login.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/logins/admin.login.yao -------------------------------------------------------------------------------- /logins/user.login.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/logins/user.login.yao -------------------------------------------------------------------------------- /models/admin/user.mod.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/models/admin/user.mod.yao -------------------------------------------------------------------------------- /models/user.mod.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/models/user.mod.yao -------------------------------------------------------------------------------- /neo/neo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/neo/neo.yml -------------------------------------------------------------------------------- /pack.build.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/pack.build.yao -------------------------------------------------------------------------------- /pack.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/pack.yao -------------------------------------------------------------------------------- /public/assets/index-de5905f0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/public/assets/index-de5905f0.css -------------------------------------------------------------------------------- /public/assets/index-fda1dd11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/public/assets/index-fda1dd11.js -------------------------------------------------------------------------------- /public/hacker-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/public/hacker-bg.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/public/index.html -------------------------------------------------------------------------------- /public/space-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/public/space-bg.jpg -------------------------------------------------------------------------------- /public/xiang-fav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/public/xiang-fav.svg -------------------------------------------------------------------------------- /public/xiang-w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/public/xiang-w.svg -------------------------------------------------------------------------------- /public/xiang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/public/xiang.svg -------------------------------------------------------------------------------- /scripts/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/scripts/doc.js -------------------------------------------------------------------------------- /scripts/guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/scripts/guard.js -------------------------------------------------------------------------------- /scripts/vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/scripts/vector.js -------------------------------------------------------------------------------- /tables/admin/user.tab.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/tables/admin/user.tab.yao -------------------------------------------------------------------------------- /tables/doc.tab.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/tables/doc.tab.yao -------------------------------------------------------------------------------- /tables/user.tab.yao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaoApp/yao-knowledge/HEAD/tables/user.tab.yao --------------------------------------------------------------------------------