neuro-simulator 0.5.2__tar.gz → 0.5.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- neuro_simulator-0.5.4/.github/workflows/release.yml +164 -0
- neuro_simulator-0.5.4/.gitignore +127 -0
- neuro_simulator-0.5.4/LICENSE +21 -0
- neuro_simulator-0.5.4/PKG-INFO +284 -0
- neuro_simulator-0.5.4/README.md +246 -0
- neuro_simulator-0.5.4/client/README.md +149 -0
- neuro_simulator-0.5.4/client/index.html +309 -0
- neuro_simulator-0.5.4/client/package-lock.json +1188 -0
- neuro_simulator-0.5.4/client/package.json +22 -0
- neuro_simulator-0.5.4/client/public/avatar.webp +0 -0
- neuro_simulator-0.5.4/client/public/background.webp +0 -0
- neuro_simulator-0.5.4/client/public/background_old.webp +0 -0
- neuro_simulator-0.5.4/client/public/banner.jpeg +0 -0
- neuro_simulator-0.5.4/client/public/channel_points.png +0 -0
- neuro_simulator-0.5.4/client/public/error.mp3 +0 -0
- neuro_simulator-0.5.4/client/public/favicon.ico +0 -0
- neuro_simulator-0.5.4/client/public/fonts/causten.woff2 +0 -0
- neuro_simulator-0.5.4/client/public/fonts/comic.woff2 +0 -0
- neuro_simulator-0.5.4/client/public/fonts/first-coffee.woff2 +0 -0
- neuro_simulator-0.5.4/client/public/fonts/noto-sans-sc.woff2 +0 -0
- neuro_simulator-0.5.4/client/public/neurosama.png +0 -0
- neuro_simulator-0.5.4/client/public/sc_pink.png +0 -0
- neuro_simulator-0.5.4/client/public/sc_purple.png +0 -0
- neuro_simulator-0.5.4/client/public/sub_badge.svg +4 -0
- neuro_simulator-0.5.4/client/public/user_avatar.jpg +0 -0
- neuro_simulator-0.5.4/client/src/core/appInitializer.ts +387 -0
- neuro_simulator-0.5.4/client/src/core/layoutManager.ts +77 -0
- neuro_simulator-0.5.4/client/src/core/singletonManager.ts +32 -0
- neuro_simulator-0.5.4/client/src/javascript/tooltip.js +55 -0
- neuro_simulator-0.5.4/client/src/javascript/viewers.js +49 -0
- neuro_simulator-0.5.4/client/src/main.ts +20 -0
- neuro_simulator-0.5.4/client/src/services/apiClient.ts +41 -0
- neuro_simulator-0.5.4/client/src/services/audioPlayer.ts +139 -0
- neuro_simulator-0.5.4/client/src/services/bilibiliService.ts +67 -0
- neuro_simulator-0.5.4/client/src/services/websocketClient.ts +137 -0
- neuro_simulator-0.5.4/client/src/stream/neuroAvatar.ts +118 -0
- neuro_simulator-0.5.4/client/src/stream/videoPlayer.ts +101 -0
- neuro_simulator-0.5.4/client/src/style.css +11 -0
- neuro_simulator-0.5.4/client/src/styles/base.css +377 -0
- neuro_simulator-0.5.4/client/src/styles/chat.css +308 -0
- neuro_simulator-0.5.4/client/src/styles/header.css +128 -0
- neuro_simulator-0.5.4/client/src/styles/offline.css +93 -0
- neuro_simulator-0.5.4/client/src/styles/responsive.css +97 -0
- neuro_simulator-0.5.4/client/src/styles/settings.css +101 -0
- neuro_simulator-0.5.4/client/src/styles/stream-info.css +270 -0
- neuro_simulator-0.5.4/client/src/styles/stream.css +263 -0
- neuro_simulator-0.5.4/client/src/styles/tooltip.css +38 -0
- neuro_simulator-0.5.4/client/src/types/common.ts +89 -0
- neuro_simulator-0.5.4/client/src/ui/chatDisplay.ts +177 -0
- neuro_simulator-0.5.4/client/src/ui/chatSidebar.ts +104 -0
- neuro_simulator-0.5.4/client/src/ui/liveIndicator.ts +28 -0
- neuro_simulator-0.5.4/client/src/ui/muteButton.ts +67 -0
- neuro_simulator-0.5.4/client/src/ui/neuroCaption.ts +131 -0
- neuro_simulator-0.5.4/client/src/ui/settingsModal.ts +130 -0
- neuro_simulator-0.5.4/client/src/ui/streamInfoDisplay.ts +41 -0
- neuro_simulator-0.5.4/client/src/ui/streamTimer.ts +64 -0
- neuro_simulator-0.5.4/client/src/ui/userInput.ts +122 -0
- neuro_simulator-0.5.4/client/src/utils/wakeLockManager.ts +63 -0
- neuro_simulator-0.5.4/client/src/vite-env.d.ts +5 -0
- neuro_simulator-0.5.4/client/src-tauri/.cargo/config.toml +5 -0
- neuro_simulator-0.5.4/client/src-tauri/Cargo.lock +5403 -0
- neuro_simulator-0.5.4/client/src-tauri/Cargo.toml +25 -0
- neuro_simulator-0.5.4/client/src-tauri/build.rs +3 -0
- neuro_simulator-0.5.4/client/src-tauri/capabilities/migrated.json +44 -0
- neuro_simulator-0.5.4/client/src-tauri/icons/icon.ico +0 -0
- neuro_simulator-0.5.4/client/src-tauri/icons/icon.png +0 -0
- neuro_simulator-0.5.4/client/src-tauri/src/lib.rs +12 -0
- neuro_simulator-0.5.4/client/src-tauri/src/main.rs +73 -0
- neuro_simulator-0.5.4/client/src-tauri/tauri.conf.json +43 -0
- neuro_simulator-0.5.4/client/tsconfig.json +23 -0
- neuro_simulator-0.5.4/client/vite.config.ts +41 -0
- neuro_simulator-0.5.4/dashboard/e2e/tsconfig.json +4 -0
- neuro_simulator-0.5.4/dashboard/e2e/vue.spec.ts +8 -0
- neuro_simulator-0.5.4/dashboard/env.d.ts +1 -0
- neuro_simulator-0.5.4/dashboard/eslint.config.ts +34 -0
- neuro_simulator-0.5.4/dashboard/index.html +13 -0
- neuro_simulator-0.5.4/dashboard/package-lock.json +6885 -0
- neuro_simulator-0.5.4/dashboard/package.json +51 -0
- neuro_simulator-0.5.4/dashboard/playwright.config.ts +110 -0
- neuro_simulator-0.5.4/dashboard/public/favicon.ico +0 -0
- neuro_simulator-0.5.4/dashboard/public/first-coffee.woff2 +0 -0
- neuro_simulator-0.5.4/dashboard/src/App.vue +126 -0
- neuro_simulator-0.5.4/dashboard/src/assets/base.css +86 -0
- neuro_simulator-0.5.4/dashboard/src/assets/fonts.css +7 -0
- neuro_simulator-0.5.4/dashboard/src/assets/logo.svg +1 -0
- neuro_simulator-0.5.4/dashboard/src/assets/main.css +1 -0
- neuro_simulator-0.5.4/dashboard/src/components/agent/ContextTab.vue +83 -0
- neuro_simulator-0.5.4/dashboard/src/components/agent/LogsTab.vue +45 -0
- neuro_simulator-0.5.4/dashboard/src/components/agent/MemoryTab.vue +376 -0
- neuro_simulator-0.5.4/dashboard/src/components/agent/ToolsTab.vue +139 -0
- neuro_simulator-0.5.4/dashboard/src/components/common/ConfirmDialog.vue +19 -0
- neuro_simulator-0.5.4/dashboard/src/components/config/FieldRenderer.vue +129 -0
- neuro_simulator-0.5.4/dashboard/src/main.ts +31 -0
- neuro_simulator-0.5.4/dashboard/src/router/index.ts +58 -0
- neuro_simulator-0.5.4/dashboard/src/stores/agent.ts +46 -0
- neuro_simulator-0.5.4/dashboard/src/stores/config.ts +42 -0
- neuro_simulator-0.5.4/dashboard/src/stores/connection.ts +211 -0
- neuro_simulator-0.5.4/dashboard/src/stores/counter.ts +12 -0
- neuro_simulator-0.5.4/dashboard/src/stores/logs.ts +30 -0
- neuro_simulator-0.5.4/dashboard/src/stores/stream.ts +15 -0
- neuro_simulator-0.5.4/dashboard/src/stores/tools.ts +23 -0
- neuro_simulator-0.5.4/dashboard/src/stores/ui.ts +34 -0
- neuro_simulator-0.5.4/dashboard/src/views/AgentView.vue +88 -0
- neuro_simulator-0.5.4/dashboard/src/views/ChatBotView.vue +81 -0
- neuro_simulator-0.5.4/dashboard/src/views/ConfigView.vue +102 -0
- neuro_simulator-0.5.4/dashboard/src/views/ControlView.vue +78 -0
- neuro_simulator-0.5.4/dashboard/src/views/HomeView.vue +117 -0
- neuro_simulator-0.5.4/dashboard/src/views/LogsView.vue +50 -0
- neuro_simulator-0.5.4/dashboard/tsconfig.app.json +12 -0
- neuro_simulator-0.5.4/dashboard/tsconfig.json +14 -0
- neuro_simulator-0.5.4/dashboard/tsconfig.node.json +19 -0
- neuro_simulator-0.5.4/dashboard/tsconfig.vitest.json +11 -0
- neuro_simulator-0.5.4/dashboard/vite.config.ts +18 -0
- neuro_simulator-0.5.4/dashboard/vitest.config.ts +14 -0
- neuro_simulator-0.5.4/docs/assets/start.gif +0 -0
- neuro_simulator-0.5.4/docs/letta_agents_example/LETTA_CLOUD_ONLY_neuro-sama.af +394 -0
- neuro_simulator-0.5.4/docs/letta_agents_example/README.md +28 -0
- neuro_simulator-0.5.4/docs/letta_agents_example/sys_prompt_for_sleeptime.txt +37 -0
- neuro_simulator-0.5.4/docs/working_dir_example/agents/neuro/history.jsonl +0 -0
- neuro_simulator-0.5.4/docs/working_dir_example/agents/neuro/tools.json +0 -0
- neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools/!!!NO-CHANGE-WILL-BE-SAVED-AFTER-RESTART!!! +0 -0
- neuro_simulator-0.5.4/docs/working_dir_example/assets/neuro_start.mp4 +0 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/chatbot/chatbot_prompt.txt +30 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/chatbot/tools.json +3 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/memories/core_memory.json +15 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/memories/init_memory.json +13 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/memories/temp_memory.json +1 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/memory_agent/memory_prompt.txt +14 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/memory_agent/tools.json +3 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/nickname_gen/data/adjectives.txt +8 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/nickname_gen/data/nouns.txt +8 -0
- neuro_simulator-0.5.4/docs/working_dir_example/chatbot/nickname_gen/data/special_users.txt +14 -0
- neuro_simulator-0.5.4/hatch_build.py +37 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4}/pyproject.toml +8 -7
- neuro_simulator-0.5.4/server/WEBSOCKET_API.md +345 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/memory/chat_history.json +20 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/memory/core_memory.json +52 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/memory/init_memory.json +42 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/memory/temp_memory.json +8 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/memory_prompt.txt +14 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/neuro_prompt.txt +32 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/add_temp_memory.py +61 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/add_to_core_memory_block.py +64 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/base.py +56 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/create_core_memory_block.py +78 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/delete_core_memory_block.py +44 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/get_core_memory_block.py +44 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/get_core_memory_blocks.py +30 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/model_spin.py +41 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/model_zoom.py +41 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/remove_from_core_memory_block.py +65 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/speak.py +56 -0
- neuro_simulator-0.5.4/server/neuro_simulator/agent/tools/update_core_memory_block.py +65 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/api/system.py +0 -9
- neuro_simulator-0.5.4/server/neuro_simulator/assets/neuro_start.mp4 +0 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/__init__.py +0 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/memory/__init__.py +0 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/memory/core_memory.json +15 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/memory/init_memory.json +13 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/memory/temp_memory.json +1 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/nickname_gen/__init__.py +0 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/nickname_gen/data/adjectives.txt +8 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/nickname_gen/data/nouns.txt +8 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/nickname_gen/data/special_users.txt +14 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/prompts/__init__.py +0 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/prompts/chatbot_prompt.txt +30 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/prompts/memory_prompt.txt +14 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/tools/__init__.py +0 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/tools/add_temp_memory.py +51 -0
- neuro_simulator-0.5.4/server/neuro_simulator/chatbot/tools/post_chat_message.py +49 -0
- neuro_simulator-0.5.4/server/neuro_simulator/config.yaml.example +117 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/core/application.py +44 -1
- neuro_simulator-0.5.2/neuro_simulator.egg-info/requires.txt → neuro_simulator-0.5.4/server/requirements.txt +0 -6
- neuro_simulator-0.5.2/PKG-INFO +0 -225
- neuro_simulator-0.5.2/neuro_simulator.egg-info/PKG-INFO +0 -225
- neuro_simulator-0.5.2/neuro_simulator.egg-info/SOURCES.txt +0 -65
- neuro_simulator-0.5.2/neuro_simulator.egg-info/dependency_links.txt +0 -1
- neuro_simulator-0.5.2/neuro_simulator.egg-info/entry_points.txt +0 -2
- neuro_simulator-0.5.2/neuro_simulator.egg-info/top_level.txt +0 -1
- neuro_simulator-0.5.2/setup.cfg +0 -4
- {neuro_simulator-0.5.2/neuro_simulator/assets → neuro_simulator-0.5.4/client/public}/neuro_start.mp4 +0 -0
- /neuro_simulator-0.5.2/neuro_simulator/chatbot/__init__.py → /neuro_simulator-0.5.4/docs/working_dir_example/agents/memories/core_memory.json +0 -0
- /neuro_simulator-0.5.2/neuro_simulator/chatbot/memory/__init__.py → /neuro_simulator-0.5.4/docs/working_dir_example/agents/memories/init_memory.json +0 -0
- /neuro_simulator-0.5.2/neuro_simulator/chatbot/nickname_gen/__init__.py → /neuro_simulator-0.5.4/docs/working_dir_example/agents/memories/temp_memory.json +0 -0
- /neuro_simulator-0.5.2/neuro_simulator/chatbot/prompts/__init__.py → /neuro_simulator-0.5.4/docs/working_dir_example/agents/memory_manager/history.jsonl +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent → neuro_simulator-0.5.4/docs/working_dir_example/agents/memory_manager}/memory_prompt.txt +0 -0
- /neuro_simulator-0.5.2/neuro_simulator/chatbot/tools/__init__.py → /neuro_simulator-0.5.4/docs/working_dir_example/agents/memory_manager/tools.json +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent → neuro_simulator-0.5.4/docs/working_dir_example/agents/neuro}/neuro_prompt.txt +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/add_temp_memory.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/add_to_core_memory_block.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/base.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/create_core_memory_block.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/delete_core_memory_block.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/get_core_memory_block.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/get_core_memory_blocks.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/model_spin.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/model_zoom.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/remove_from_core_memory_block.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/speak.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/agent/tools → neuro_simulator-0.5.4/docs/working_dir_example/agents/tools/builtin_tools}/update_core_memory_block.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/chatbot/tools → neuro_simulator-0.5.4/docs/working_dir_example/chatbot/tools/builtin_tools}/add_temp_memory.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator/chatbot/tools → neuro_simulator-0.5.4/docs/working_dir_example/chatbot/tools/builtin_tools}/post_chat_message.py +0 -0
- {neuro_simulator-0.5.2/neuro_simulator → neuro_simulator-0.5.4/docs/working_dir_example}/config.yaml.example +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/README.md +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/__init__.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/agent/__init__.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/agent/core.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/agent/llm.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/agent/memory/__init__.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/agent/memory/manager.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/agent/tools/__init__.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/agent/tools/manager.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/api/__init__.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/chatbot/core.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/chatbot/llm.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/chatbot/memory/manager.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/chatbot/nickname_gen/generator.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/chatbot/tools/base.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/chatbot/tools/manager.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/cli.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/core/__init__.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/core/agent_factory.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/core/agent_interface.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/core/config.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/core/path_manager.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/services/__init__.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/services/audio.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/services/builtin.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/services/letta.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/services/stream.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/utils/__init__.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/utils/logging.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/utils/process.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/utils/queue.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/utils/state.py +0 -0
- {neuro_simulator-0.5.2 → neuro_simulator-0.5.4/server}/neuro_simulator/utils/websocket.py +0 -0
@@ -0,0 +1,164 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_dispatch:
|
5
|
+
push:
|
6
|
+
tags:
|
7
|
+
- 'server-v*.*.*'
|
8
|
+
- 'client-v*.*.*'
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
release-server:
|
12
|
+
name: Release Server to PyPI and GitHub
|
13
|
+
if: startsWith(github.ref, 'refs/tags/server-v')
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
permissions:
|
16
|
+
contents: write
|
17
|
+
id-token: write
|
18
|
+
|
19
|
+
steps:
|
20
|
+
- name: Checkout repository
|
21
|
+
uses: actions/checkout@v5
|
22
|
+
with:
|
23
|
+
fetch-depth: 0
|
24
|
+
|
25
|
+
- name: Get version from tag
|
26
|
+
id: get_version
|
27
|
+
run: echo "VERSION=${GITHUB_REF_NAME#server-v}" >> $GITHUB_OUTPUT
|
28
|
+
|
29
|
+
- name: Set up Python
|
30
|
+
uses: actions/setup-python@v6
|
31
|
+
with:
|
32
|
+
python-version: '3.12'
|
33
|
+
|
34
|
+
- name: Setup Node.js
|
35
|
+
uses: actions/setup-node@v5
|
36
|
+
with:
|
37
|
+
node-version: '20'
|
38
|
+
|
39
|
+
- name: Install build dependencies
|
40
|
+
run: python -m pip install --upgrade pip build
|
41
|
+
|
42
|
+
- name: Build package
|
43
|
+
run: python -m build
|
44
|
+
|
45
|
+
- name: Generate Release Notes
|
46
|
+
id: generate_notes
|
47
|
+
run: |
|
48
|
+
PREVIOUS_TAG=$(git tag --list 'server-v*.*.*' --sort=-v:refname | sed -n '2p')
|
49
|
+
if [ -z "$PREVIOUS_TAG" ]; then
|
50
|
+
COMMIT_RANGE=$(git rev-list --max-parents=0 HEAD)
|
51
|
+
else
|
52
|
+
COMMIT_RANGE="$PREVIOUS_TAG..${{ github.ref_name }}"
|
53
|
+
fi
|
54
|
+
|
55
|
+
RELEASE_NOTES=$(git log $COMMIT_RANGE --pretty=format:"* %s" | grep -E '\(.*\bserver\b.*\):' | sed -E 's/^\* ([^:]+):/\* \*\*\1:\*\*/')
|
56
|
+
|
57
|
+
if [ -z "$RELEASE_NOTES" ]; then
|
58
|
+
RELEASE_NOTES="No specific changes for this release."
|
59
|
+
fi
|
60
|
+
|
61
|
+
echo "release_notes<<EOF" >> $GITHUB_OUTPUT
|
62
|
+
echo -e "## Changes\n\n$RELEASE_NOTES" >> $GITHUB_OUTPUT
|
63
|
+
echo "EOF" >> $GITHUB_OUTPUT
|
64
|
+
|
65
|
+
- name: Publish package to PyPI
|
66
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
67
|
+
with:
|
68
|
+
packages-dir: dist/
|
69
|
+
|
70
|
+
- name: Create GitHub Release and Upload Assets
|
71
|
+
uses: softprops/action-gh-release@v2
|
72
|
+
with:
|
73
|
+
tag_name: ${{ github.ref }}
|
74
|
+
name: "Server v${{ steps.get_version.outputs.VERSION }}"
|
75
|
+
body: ${{ steps.generate_notes.outputs.release_notes }}
|
76
|
+
files: dist/*
|
77
|
+
|
78
|
+
release-client:
|
79
|
+
name: Release Client
|
80
|
+
if: startsWith(github.ref, 'refs/tags/client-v')
|
81
|
+
strategy:
|
82
|
+
matrix:
|
83
|
+
platform: [ubuntu-latest, windows-latest]
|
84
|
+
runs-on: ${{ matrix.platform }}
|
85
|
+
permissions:
|
86
|
+
contents: write
|
87
|
+
|
88
|
+
steps:
|
89
|
+
- name: Checkout repository
|
90
|
+
uses: actions/checkout@v5
|
91
|
+
with:
|
92
|
+
fetch-depth: 0
|
93
|
+
|
94
|
+
- name: Get version from tag
|
95
|
+
id: get_version
|
96
|
+
run: echo "VERSION=${GITHUB_REF_NAME#client-v}" >> $GITHUB_OUTPUT
|
97
|
+
|
98
|
+
- name: Setup Node.js
|
99
|
+
uses: actions/setup-node@v5
|
100
|
+
with:
|
101
|
+
node-version: '20'
|
102
|
+
|
103
|
+
- name: Install frontend dependencies
|
104
|
+
run: npm install
|
105
|
+
working-directory: ./client
|
106
|
+
|
107
|
+
- name: Install Tauri dependencies (Ubuntu)
|
108
|
+
if: matrix.platform == 'ubuntu-latest'
|
109
|
+
run: |
|
110
|
+
sudo apt-get update
|
111
|
+
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
|
112
|
+
|
113
|
+
- name: Build Tauri App
|
114
|
+
uses: tauri-apps/tauri-action@v0
|
115
|
+
id: tauri
|
116
|
+
env:
|
117
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
118
|
+
with:
|
119
|
+
projectPath: ./client
|
120
|
+
|
121
|
+
- name: Generate Release Notes (Linux job only)
|
122
|
+
if: matrix.platform == 'ubuntu-latest'
|
123
|
+
id: generate_notes
|
124
|
+
shell: bash
|
125
|
+
run: |
|
126
|
+
PREVIOUS_TAG=$(git tag --list 'client-v*.*.*' --sort=-v:refname | sed -n '2p')
|
127
|
+
if [ -z "$PREVIOUS_TAG" ]; then
|
128
|
+
COMMIT_RANGE=$(git rev-list --max-parents=0 HEAD)
|
129
|
+
else
|
130
|
+
COMMIT_RANGE="$PREVIOUS_TAG..${{ github.ref_name }}"
|
131
|
+
fi
|
132
|
+
RELEASE_NOTES=$(git log $COMMIT_RANGE --pretty=format:"* %s" | grep -E '\(.*\bclient\b.*\):' | sed -E 's/^\* ([^:]+):/\* \*\*\1:\*\*/')
|
133
|
+
if [ -z "$RELEASE_NOTES" ]; then
|
134
|
+
RELEASE_NOTES="No specific changes for this release."
|
135
|
+
fi
|
136
|
+
echo "release_notes<<EOF" >> $GITHUB_OUTPUT
|
137
|
+
echo -e "## Changes\n\n$RELEASE_NOTES" >> $GITHUB_OUTPUT
|
138
|
+
echo "EOF" >> $GITHUB_OUTPUT
|
139
|
+
|
140
|
+
- name: Archive static web app (Linux job only)
|
141
|
+
if: matrix.platform == 'ubuntu-latest'
|
142
|
+
run: zip -r web.zip ./client/dist
|
143
|
+
shell: bash
|
144
|
+
|
145
|
+
- name: Create Release and Upload Linux/Web Assets
|
146
|
+
if: matrix.platform == 'ubuntu-latest'
|
147
|
+
uses: softprops/action-gh-release@v2
|
148
|
+
with:
|
149
|
+
tag_name: ${{ github.ref_name }}
|
150
|
+
name: "Client v${{ steps.get_version.outputs.VERSION }}"
|
151
|
+
body: ${{ steps.generate_notes.outputs.release_notes }}
|
152
|
+
files: |
|
153
|
+
./web.zip
|
154
|
+
client/src-tauri/target/release/bundle/appimage/*.AppImage
|
155
|
+
client/src-tauri/target/release/bundle/deb/*.deb
|
156
|
+
|
157
|
+
- name: Upload Windows Assets
|
158
|
+
if: matrix.platform == 'windows-latest'
|
159
|
+
uses: softprops/action-gh-release@v2
|
160
|
+
with:
|
161
|
+
tag_name: ${{ github.ref_name }}
|
162
|
+
files: |
|
163
|
+
client/src-tauri/target/release/bundle/msi/*.msi
|
164
|
+
client/src-tauri/target/release/bundle/nsis/*.exe
|
@@ -0,0 +1,127 @@
|
|
1
|
+
# .gitignore
|
2
|
+
|
3
|
+
# ---------------------------------------------------------------------------
|
4
|
+
# --- General / OS ----------------------------------------------------------
|
5
|
+
# ---------------------------------------------------------------------------
|
6
|
+
# Logs and databases
|
7
|
+
logs
|
8
|
+
*.log
|
9
|
+
*.sql
|
10
|
+
*.sqlite
|
11
|
+
|
12
|
+
# OS-generated files
|
13
|
+
.DS_Store
|
14
|
+
.DS_Store?
|
15
|
+
._*
|
16
|
+
.Spotlight-V100
|
17
|
+
.Trashes
|
18
|
+
ehthumbs.db
|
19
|
+
Thumbs.db
|
20
|
+
|
21
|
+
# ---------------------------------------------------------------------------
|
22
|
+
# --- IDEs / Editors --------------------------------------------------------
|
23
|
+
# ---------------------------------------------------------------------------
|
24
|
+
.idea/
|
25
|
+
.vscode/
|
26
|
+
*.suo
|
27
|
+
*.ntvs*
|
28
|
+
*.njsproj
|
29
|
+
*.sln
|
30
|
+
*.sw?
|
31
|
+
|
32
|
+
# ---------------------------------------------------------------------------
|
33
|
+
# --- Python Specific -------------------------------------------------------
|
34
|
+
# ---------------------------------------------------------------------------
|
35
|
+
# Virtual Environments
|
36
|
+
venv/
|
37
|
+
.venv/
|
38
|
+
ENV/
|
39
|
+
env/
|
40
|
+
venv.bak/
|
41
|
+
|
42
|
+
# Byte-compiled / optimized / DLL files
|
43
|
+
__pycache__/
|
44
|
+
*.py[cod]
|
45
|
+
*$py.class
|
46
|
+
|
47
|
+
# Distribution / packaging
|
48
|
+
.Python
|
49
|
+
build/
|
50
|
+
develop-eggs/
|
51
|
+
dist/
|
52
|
+
downloads/
|
53
|
+
eggs/
|
54
|
+
.eggs/
|
55
|
+
lib/
|
56
|
+
lib64/
|
57
|
+
parts/
|
58
|
+
sdist/
|
59
|
+
var/
|
60
|
+
wheels/
|
61
|
+
share/python-wheels/
|
62
|
+
*.egg-info/
|
63
|
+
.installed.cfg
|
64
|
+
*.egg
|
65
|
+
MANIFEST
|
66
|
+
|
67
|
+
# ---------------------------------------------------------------------------
|
68
|
+
# --- Node.js / Client Specific -------------------------------------------
|
69
|
+
# ---------------------------------------------------------------------------
|
70
|
+
# Dependency directories
|
71
|
+
node_modules/
|
72
|
+
/jspm_packages/
|
73
|
+
|
74
|
+
# Build output
|
75
|
+
# /dist/ # 保留,因为这是Vite前端的构建输出目录
|
76
|
+
/release/
|
77
|
+
/out/
|
78
|
+
/.vitepress/dist/
|
79
|
+
/.vitepress/cache/
|
80
|
+
|
81
|
+
# Cache files
|
82
|
+
.npm/
|
83
|
+
.eslintcache
|
84
|
+
.stylelintcache
|
85
|
+
.cache/
|
86
|
+
.parcel-cache/
|
87
|
+
*.tsbuildinfo
|
88
|
+
|
89
|
+
# Logs
|
90
|
+
npm-debug.log*
|
91
|
+
yarn-debug.log*
|
92
|
+
yarn-error.log*
|
93
|
+
pnpm-debug.log*
|
94
|
+
lerna-debug.log*
|
95
|
+
|
96
|
+
# Other
|
97
|
+
*.tgz
|
98
|
+
.yarn-integrity
|
99
|
+
.yarn/*
|
100
|
+
!.yarn/patches
|
101
|
+
!.yarn/plugins
|
102
|
+
!.yarn/releases
|
103
|
+
!.yarn/sdks
|
104
|
+
!.yarn/versions
|
105
|
+
|
106
|
+
# ---------------------------------------------------------------------------
|
107
|
+
# --- Rust / Tauri Specific -------------------------------------------------
|
108
|
+
# ---------------------------------------------------------------------------
|
109
|
+
# Tauri build artifacts.
|
110
|
+
# 注意: Cargo.lock 文件不应被忽略,以确保可复现的构建。
|
111
|
+
target/
|
112
|
+
gen/
|
113
|
+
|
114
|
+
# ---------------------------------------------------------------------------
|
115
|
+
# --- Project Specific & Sensitive Info -------------------------------------
|
116
|
+
# ---------------------------------------------------------------------------
|
117
|
+
# Secrets and environment variables (DO NOT COMMIT)
|
118
|
+
.env
|
119
|
+
.env.*
|
120
|
+
!.env.example
|
121
|
+
config.yaml
|
122
|
+
|
123
|
+
# Personal scripts and temporary files (adjust as needed)
|
124
|
+
/sum.sh
|
125
|
+
/project_code_archive.md
|
126
|
+
# 取消下面这行的注释来忽略你的开发脚本
|
127
|
+
#/run_dev.bat
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) [2025] [Moha-Master]
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1,284 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: neuro_simulator
|
3
|
+
Version: 0.5.4
|
4
|
+
Summary: Neuro Simulator Server
|
5
|
+
Project-URL: Homepage, https://github.com/Moha-Master/neuro-simulator
|
6
|
+
Project-URL: Repository, https://github.com/Moha-Master/neuro-simulator
|
7
|
+
Project-URL: Issues, https://github.com/Moha-Master/neuro-simulator/issues
|
8
|
+
Author-email: Moha-Master <hongkongreporter@outlook.com>
|
9
|
+
License-Expression: MIT
|
10
|
+
License-File: LICENSE
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
12
|
+
Classifier: Intended Audience :: Developers
|
13
|
+
Classifier: Operating System :: OS Independent
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
20
|
+
Requires-Python: >=3.8
|
21
|
+
Requires-Dist: azure-cognitiveservices-speech
|
22
|
+
Requires-Dist: fastapi
|
23
|
+
Requires-Dist: google-genai
|
24
|
+
Requires-Dist: jinja2
|
25
|
+
Requires-Dist: letta-client
|
26
|
+
Requires-Dist: mutagen
|
27
|
+
Requires-Dist: openai
|
28
|
+
Requires-Dist: pydantic
|
29
|
+
Requires-Dist: python-multipart
|
30
|
+
Requires-Dist: pyyaml
|
31
|
+
Requires-Dist: uvicorn
|
32
|
+
Provides-Extra: dev
|
33
|
+
Requires-Dist: black; extra == 'dev'
|
34
|
+
Requires-Dist: flake8; extra == 'dev'
|
35
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
36
|
+
Requires-Dist: pytest>=6.0; extra == 'dev'
|
37
|
+
Description-Content-Type: text/markdown
|
38
|
+
|
39
|
+
# Neuro Simulator
|
40
|
+
|
41
|
+
***关注Vedal喵,关注Vedal谢谢喵***
|
42
|
+
|
43
|
+
*本临时README和所有代码均由AI生成*
|
44
|
+
|
45
|
+
Neuro Simulator 是一个模拟 Neuro-sama 直播的项目
|
46
|
+
它通过调用 Letta(一个为 LLM 添加自主记忆功能的项目),也可使用自带的有记忆 Agent,配合其他 LLM 服务生成的模拟观众,模拟一场 Neuro-sama 的 Just Chatting 直播
|
47
|
+
它能生成实时的虚拟聊天内容,并通过 TTS 合成语音,提供沉浸式的 Twitch vedal987 频道观看体验
|
48
|
+
|
49
|
+
## 特性
|
50
|
+
|
51
|
+
和其他大佬的类似项目不同,本项目的重点在于尽可能模拟 Neuro-sama 在 Twitch 上的 Tuesday Stream,因此不会有太多的自定义部分
|
52
|
+
后续有低成本低性能方法实现 Evil 音色模仿的时候,可能加入 Evil 的 Just Chatting 乃至各种主题的 Twin Stream
|
53
|
+
|
54
|
+
### 预览
|
55
|
+
|
56
|
+
*这图是较旧版本的,现在小牛已经和现实中一样换新家了*
|
57
|
+
|
58
|
+
演示视频:[哔哩哔哩](https://www.bilibili.com/video/BV1Aot4zTEwt)
|
59
|
+
|
60
|
+
<img src="docs/assets/start.gif" width="500" />
|
61
|
+
|
62
|
+
### 核心亮点
|
63
|
+
|
64
|
+
- **多客户端支持**:支持多个客户端连接,实时广播内容
|
65
|
+
- **配置热重载**:通过 Web 控制面板修改和热重载配置
|
66
|
+
- **双 Agent 模式**:支持 Letta Agent 和内建 Agent,提供更多自定义选项
|
67
|
+
- **Agent 记忆管理**:内建 Agent 支持多种记忆类型(初始化记忆、核心记忆、临时记忆、上下文)
|
68
|
+
|
69
|
+
## 快速开始
|
70
|
+
|
71
|
+
1. **准备外部服务**:确保你拥有必要的 API 密钥,包括 LLM(Gemini/OpenAI)和 Azure TTS;如果使用 Letta,也请注册好相关的 API
|
72
|
+
2. **安装服务端**:
|
73
|
+
```bash
|
74
|
+
pip install neuro-simulator
|
75
|
+
```
|
76
|
+
3. **运行服务端**:
|
77
|
+
```bash
|
78
|
+
neuro
|
79
|
+
```
|
80
|
+
记得填写好配置目录中的 `config.yaml`
|
81
|
+
- 不指定 `--dir` 则自动创建和默认使用 `~/.config/neuro-simulator/` 作为工作目录
|
82
|
+
- 在默认或指定目录及需要的文件不存在时,程序会自动用自带模板复制一份到工作目录下
|
83
|
+
|
84
|
+
4. **安装客户端**:
|
85
|
+
```bash
|
86
|
+
cd client
|
87
|
+
npm install
|
88
|
+
```
|
89
|
+
5. **运行客户端**:
|
90
|
+
```bash
|
91
|
+
npm run dev
|
92
|
+
```
|
93
|
+
6. **部署控制面板**:
|
94
|
+
```bash
|
95
|
+
cd dashboard_web
|
96
|
+
python -m http.server 8080
|
97
|
+
```
|
98
|
+
|
99
|
+
更多更复杂或者更简单的使用方式,请参见三个部分的详细文档
|
100
|
+
|
101
|
+
## 项目结构
|
102
|
+
|
103
|
+
```
|
104
|
+
Neuro-Simulator/
|
105
|
+
├── server/ # 服务端
|
106
|
+
├── client/ # 客户端
|
107
|
+
├── dashboard_web/ # Web控制面板
|
108
|
+
├── docs/ # 文档和示例文件
|
109
|
+
│ ├── letta_agents_example/ # Letta Agent 模板示例
|
110
|
+
│ ├── assets/ # README中使用的媒体文件
|
111
|
+
│ └── working_dir_example/ # 工作目录示例
|
112
|
+
└── README.md # 项目说明文档
|
113
|
+
```
|
114
|
+
|
115
|
+
## 详细文档
|
116
|
+
|
117
|
+
有关安装、配置和使用的详细信息,请参阅详细的 README 文件:
|
118
|
+
|
119
|
+
- [服务端 README](server/README.md)
|
120
|
+
- [客户端 README](client/README.md)
|
121
|
+
- [控制面板 README](dashboard_web/README.md)
|
122
|
+
|
123
|
+
## 开发计划和已实现功能
|
124
|
+
|
125
|
+
- 服务端
|
126
|
+
- [x] Neuro Agent 模块
|
127
|
+
- [x] 基于 Letta 的 Neuro Agent
|
128
|
+
- [x] 内建的 Neuro Agent
|
129
|
+
- [x] 基本的对话和上下文功能
|
130
|
+
- [x] 自动和手动记忆管理,包括系统提示、核心记忆、临时记忆
|
131
|
+
- [x] prompt 完整内容编辑
|
132
|
+
- [ ] 工具调用
|
133
|
+
- [x] 内建工具及调用
|
134
|
+
- [x] 记忆管理
|
135
|
+
- [ ] 直播标题修改
|
136
|
+
- [x] 对外发言
|
137
|
+
- [ ] 发起投票和查看结果
|
138
|
+
- [x] 旋转和缩放模型
|
139
|
+
- [ ] 调整 TTS 语速
|
140
|
+
- [ ] 禁言指定名称用户
|
141
|
+
- [ ] 播放音效
|
142
|
+
- [ ] 模块化热插拔工具
|
143
|
+
- [ ] 连接到 MCP 服务器
|
144
|
+
- [ ] 兼容 Offical [Neuro SDK](https://github.com/VedalAI/neuro-sdk)
|
145
|
+
- [ ] 拉起和对话 Evil Agent
|
146
|
+
- [ ] Evil Agent 模块,~~卖掉了~~ 待 Neuro Agent 完善、有低成本低性能方法实现 Evil 音色模仿的时候加入
|
147
|
+
- [ ] 对 Neuroverse 更多成员的 AI Agent 复现,进而允许 Neuro Agent 向其发送 DM(语音聊天可能不太现实)
|
148
|
+
- [x] Chatbot 模块
|
149
|
+
- [x] 无状态 Chatbot(即将弃用)
|
150
|
+
- [x] Username 的自动生成和预置替换补充
|
151
|
+
- [x] prompt 编辑
|
152
|
+
- [x] 调用 Gemini 和 OpenAI API 格式的LLM
|
153
|
+
- [x] 基于 Neuro Agent 的上一句内容而做出 Reaction
|
154
|
+
- [ ] ~~在 prompt 中包含直播标题等更多信息~~ 将在更详细的 Chatbot Agent 中实现
|
155
|
+
- [x] ~~实现更长的上下文~~ 将在更详细的 Chatbot Agent 中实现
|
156
|
+
- [x] Chatbot Agent
|
157
|
+
- [x] 更好的用户名生成逻辑
|
158
|
+
- [x] 更长的上下文,包括自身输出和 Neuro Agent 内容
|
159
|
+
- [ ] 在 prompt 中包含直播标题、Neuro 和 Twitch 相关背景知识等更多信息
|
160
|
+
- [x] 类似 Neuro Agent 的记忆系统,实现有状态 Chatbot Agent
|
161
|
+
- [ ] 真实的 Filter 模块,取代 Agent prompt 中的自我 Filtered.
|
162
|
+
- [x] 对外 API 接口,包括常规的 http 和 ws 端点
|
163
|
+
- [x] Twitch Chat 及管理
|
164
|
+
- [x] 普通 Chat
|
165
|
+
- [x] 随机池机制,从中抽取消息注入 Neuro
|
166
|
+
- [x] 醒目留言 Highlight Messages
|
167
|
+
- [x] 队列机制,先进先出
|
168
|
+
- [ ] 可选的 TTS Guy
|
169
|
+
- [ ] Subs 和 Donations 相关机制
|
170
|
+
- [ ] 禁言指定名称用户
|
171
|
+
- [x] 配置管理和热重载
|
172
|
+
- [x] TTS 合成和推送
|
173
|
+
- [x] Azure TTS
|
174
|
+
- [ ] 待定 TTS
|
175
|
+
- [ ] 剔除 Emoji 等特殊字符
|
176
|
+
- [x] 进行直播和直播环节
|
177
|
+
- [x] Just Chatting 单人直播
|
178
|
+
- [x] Neuro Stream
|
179
|
+
- [ ] Evil Stream
|
180
|
+
- [ ] Karaoke 歌回直播
|
181
|
+
- [ ] Twin 闲聊或主题直播
|
182
|
+
- [ ] 艺术鉴赏直播环节
|
183
|
+
- [x] 多客户端连接和广播
|
184
|
+
- [ ] 动态推送开场 Starting Soon 视频
|
185
|
+
- [x] 直播阶段
|
186
|
+
- [x] Starting Soon
|
187
|
+
- [x] 神の上升
|
188
|
+
- [x] 常规直播
|
189
|
+
- [ ] Ending
|
190
|
+
- [x] 直播和聊天室内容
|
191
|
+
- [x] 醒目留言 Highlight Messages
|
192
|
+
- [x] 直播标题和标签等信息
|
193
|
+
- [ ] 在非直播的空闲时间自动获取真实世界中 Neuro 的近期直播内容,更新完善记忆内容(不是微调训练)
|
194
|
+
- [ ] 对 Ollama 等本地 LLM 的优化
|
195
|
+
- [ ] 服务端内嵌管理面板
|
196
|
+
- [ ] Web 控制面板
|
197
|
+
- [ ] 使用 PyInquiry 的命令行面板
|
198
|
+
- 客户端
|
199
|
+
- [ ] 仅包含直播区域的客户端,适用于希望使用 OBS 或其他软件推流画面的用户
|
200
|
+
- [x] 可自定义的用户信息和服务端地址
|
201
|
+
- [x] 仿 Twitch 直播界面
|
202
|
+
- [x] 响应式设计
|
203
|
+
- [x] 主要界面元素
|
204
|
+
- [ ] 次级页面
|
205
|
+
- [x] Twitch Chat 和其他互动
|
206
|
+
- [x] 普通聊天的发送和查看
|
207
|
+
- [x] 使用 Bits 和 Channel Points 发送醒目留言 Highlight Messages
|
208
|
+
- [ ] 表情发送
|
209
|
+
- [ ] Bits & Channel Points 逻辑
|
210
|
+
- [ ] 小牛最爱的 Subs 和 Donations 相关逻辑
|
211
|
+
- [ ] 参与投票
|
212
|
+
- [x] 主播和直播信息
|
213
|
+
- [x] 头像、名称信息
|
214
|
+
- [x] 动态更新的直播标题、分区、标签
|
215
|
+
- [x] 动态更新的人数和直播时长
|
216
|
+
- [ ] 下滑的更多主播信息
|
217
|
+
- [x] 使用 html 模拟的直播场景
|
218
|
+
- [x] 仿真字幕样式
|
219
|
+
- [x] 字体和描边效果
|
220
|
+
- [x] 逐字跳出效果
|
221
|
+
- [x] 随内容量的字号调整效果
|
222
|
+
- [x] 仿真 Twitch Chat Overlay
|
223
|
+
- [x] Neuro 立绘
|
224
|
+
- [x] 开场上升
|
225
|
+
- [ ] 表情差分
|
226
|
+
- [x] 旋转缩放
|
227
|
+
- [ ] 自然晃动
|
228
|
+
- [ ] 音效播放
|
229
|
+
- [ ] Evil 立绘
|
230
|
+
- [x] 醒目留言 Highlight Messages Overlay
|
231
|
+
- [x] 根据来源(Bits 或 Channel Points)显示不同颜色背景
|
232
|
+
- [x] 展示用户名和内容
|
233
|
+
- [x] 更真实的进入/退出动画
|
234
|
+
- [x] 仿 Twitch 离线界面(主播首页)
|
235
|
+
- [x] 响应式设计
|
236
|
+
- [x] 自动获取最新哔哩哔哩官号回放
|
237
|
+
- [ ] 自动获取上一场哔哩哔哩直播回放对应的时间、分区、回放视频链接
|
238
|
+
- [ ] 真实的主播首页竖屏模式界面(目前沿用针对竖屏优化过的横屏样式)
|
239
|
+
- [ ] 下滑的更多主播信息
|
240
|
+
- [ ] 其他次级页面
|
241
|
+
- [ ] 更多客户端(若实现原生客户端则弃用 tauri)
|
242
|
+
- [x] 可托管的 Web 静态页面
|
243
|
+
- [x] Windows 客户端
|
244
|
+
- [x] 基于 Tauri
|
245
|
+
- [ ] 原生
|
246
|
+
- [x] Linux 客户端
|
247
|
+
- [x] 基于 Tauri
|
248
|
+
- [ ] 原生
|
249
|
+
- [ ] Android 客户端
|
250
|
+
- [ ] 基于 Tauri
|
251
|
+
- [ ] 原生
|
252
|
+
- Web 控制面板
|
253
|
+
- [ ] 更加便捷的启动器/启动脚本
|
254
|
+
- [x] 指定服务端 URL 进行连接
|
255
|
+
- [x] 直播的开始、停止、重启
|
256
|
+
- [x] 配置的查看、编辑、热重载
|
257
|
+
- [x] 服务端实时日志查看
|
258
|
+
- [ ] 按照等级进行日志筛选
|
259
|
+
- [x] Agent管理
|
260
|
+
- [x] 对话上下文查看
|
261
|
+
- [x] 对话方式展现
|
262
|
+
- [x] 上下文方式展现
|
263
|
+
- [x] 实时更新
|
264
|
+
- [x] 更好的界面
|
265
|
+
- [ ] 可视化展现 Agent 的详细执行流程
|
266
|
+
- [x] 实时日志查看
|
267
|
+
- [ ] 按照等级进行日志筛选
|
268
|
+
- [x] 记忆查看和手动管理
|
269
|
+
- [x] 工具
|
270
|
+
- [x] 简易的内建工具查看
|
271
|
+
- [ ] 工具管理取决于服务端开发进度
|
272
|
+
- 杂项,有一些可能永远不会实现,有一些可能很快就能完成
|
273
|
+
- [ ] 一键启动器和整合包,适用于不需要分开部署的情况,或者面向普通小白用户
|
274
|
+
- [ ] 把三个项目模块整合为一个
|
275
|
+
- [ ] 基于静态立绘制作的简易Live2D,能动就行
|
276
|
+
- [x] 目前不会考虑语音输入
|
277
|
+
|
278
|
+
> 除非你和 Neuro 在直播中有过语音联动,那我可以叫上 Gemini 一起,给你单独定制一个(
|
279
|
+
|
280
|
+
- [ ] 等待补充…
|
281
|
+
|
282
|
+
## 贡献
|
283
|
+
|
284
|
+
欢迎提交 Issue 和 Pull Request 来帮助改进项目,虽然大概率会是 Gemini 2.5 或者 Qwen Coder 来处理🤣
|