├── .gitignore ├── README.md ├── README_EN.md ├── __init__.py ├── api ├── .env_copy ├── __init__.py ├── alembic.ini ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 3b63149eb0a4_initial_migration.py │ │ ├── a04983012f27_修改apikeys表.py │ │ └── fd530dceeb0b_updateddtime.py ├── app.py ├── configs │ ├── config.py │ └── llm_config.py ├── controllers │ ├── __init__.py │ └── chat2note │ │ ├── __init__.py │ │ └── models.py ├── core │ ├── __init__.py │ ├── chat2note │ │ ├── __init__.py │ │ ├── chat2note.py │ │ ├── chat_type.py │ │ └── get_logs.py │ └── llms │ │ ├── __init__.py │ │ ├── doubao.py │ │ ├── llm.py │ │ ├── llm_manager.py │ │ ├── openaillm.py │ │ ├── sparkai_llm.py │ │ └── zhipuai_llm.py ├── database │ └── mysql_client.py ├── docker-compose.yml ├── models │ ├── __init__.py │ └── llm_info.py ├── requirements.txt ├── services │ └── chat2note.py └── test │ ├── __init__.py │ ├── test_api.py │ └── test_llm.py ├── cli ├── __init__.py └── cli.py ├── setup.py └── web ├── .env_copy ├── .gitignore ├── .vscode └── extensions.json ├── Dockerfile ├── README.md ├── env.d.ts ├── index.html ├── package-lock.json ├── package.json ├── public └── favicon.ico ├── src ├── App.vue ├── assets │ ├── base.css │ ├── logo.svg │ └── main.css ├── components │ ├── ProviderSettingBox.vue │ └── icons │ │ ├── IconCommunity.vue │ │ ├── IconDocumentation.vue │ │ ├── IconEcosystem.vue │ │ ├── IconSupport.vue │ │ └── IconTooling.vue ├── main.ts ├── router │ └── index.ts ├── type │ └── provider.ts ├── types │ └── v-md-editor.d.ts └── views │ ├── AboutView.vue │ └── HomeView.vue ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/README_EN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/.env_copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/.env_copy -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/alembic.ini -------------------------------------------------------------------------------- /api/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /api/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/alembic/env.py -------------------------------------------------------------------------------- /api/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/alembic/script.py.mako -------------------------------------------------------------------------------- /api/alembic/versions/3b63149eb0a4_initial_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/alembic/versions/3b63149eb0a4_initial_migration.py -------------------------------------------------------------------------------- /api/alembic/versions/a04983012f27_修改apikeys表.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/alembic/versions/a04983012f27_修改apikeys表.py -------------------------------------------------------------------------------- /api/alembic/versions/fd530dceeb0b_updateddtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/alembic/versions/fd530dceeb0b_updateddtime.py -------------------------------------------------------------------------------- /api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/app.py -------------------------------------------------------------------------------- /api/configs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/configs/config.py -------------------------------------------------------------------------------- /api/configs/llm_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/configs/llm_config.py -------------------------------------------------------------------------------- /api/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/controllers/__init__.py -------------------------------------------------------------------------------- /api/controllers/chat2note/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/controllers/chat2note/__init__.py -------------------------------------------------------------------------------- /api/controllers/chat2note/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/controllers/chat2note/models.py -------------------------------------------------------------------------------- /api/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/core/chat2note/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/core/chat2note/chat2note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/chat2note/chat2note.py -------------------------------------------------------------------------------- /api/core/chat2note/chat_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/chat2note/chat_type.py -------------------------------------------------------------------------------- /api/core/chat2note/get_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/chat2note/get_logs.py -------------------------------------------------------------------------------- /api/core/llms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/llms/__init__.py -------------------------------------------------------------------------------- /api/core/llms/doubao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/llms/doubao.py -------------------------------------------------------------------------------- /api/core/llms/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/llms/llm.py -------------------------------------------------------------------------------- /api/core/llms/llm_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/llms/llm_manager.py -------------------------------------------------------------------------------- /api/core/llms/openaillm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/llms/openaillm.py -------------------------------------------------------------------------------- /api/core/llms/sparkai_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/llms/sparkai_llm.py -------------------------------------------------------------------------------- /api/core/llms/zhipuai_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/core/llms/zhipuai_llm.py -------------------------------------------------------------------------------- /api/database/mysql_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/database/mysql_client.py -------------------------------------------------------------------------------- /api/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/docker-compose.yml -------------------------------------------------------------------------------- /api/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models/llm_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/models/llm_info.py -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/requirements.txt -------------------------------------------------------------------------------- /api/services/chat2note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/services/chat2note.py -------------------------------------------------------------------------------- /api/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/test/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/test/test_api.py -------------------------------------------------------------------------------- /api/test/test_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/api/test/test_llm.py -------------------------------------------------------------------------------- /cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/cli/cli.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/setup.py -------------------------------------------------------------------------------- /web/.env_copy: -------------------------------------------------------------------------------- 1 | VITE_BASE_URL=http://127.0.0.1:9988 -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/README.md -------------------------------------------------------------------------------- /web/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/env.d.ts -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/App.vue -------------------------------------------------------------------------------- /web/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/assets/base.css -------------------------------------------------------------------------------- /web/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/assets/logo.svg -------------------------------------------------------------------------------- /web/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/assets/main.css -------------------------------------------------------------------------------- /web/src/components/ProviderSettingBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/components/ProviderSettingBox.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/components/icons/IconCommunity.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/components/icons/IconDocumentation.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/components/icons/IconEcosystem.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/components/icons/IconSupport.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/components/icons/IconTooling.vue -------------------------------------------------------------------------------- /web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/main.ts -------------------------------------------------------------------------------- /web/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/router/index.ts -------------------------------------------------------------------------------- /web/src/type/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/type/provider.ts -------------------------------------------------------------------------------- /web/src/types/v-md-editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/types/v-md-editor.d.ts -------------------------------------------------------------------------------- /web/src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/views/AboutView.vue -------------------------------------------------------------------------------- /web/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/src/views/HomeView.vue -------------------------------------------------------------------------------- /web/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/tsconfig.app.json -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/tsconfig.node.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmicResearchCenter/chat2note/HEAD/web/vite.config.ts --------------------------------------------------------------------------------