├── .gitignore ├── .vscode └── settings.json ├── README.md ├── docs ├── arch │ └── RaySystem 整体架构.v0.1.svg ├── develop │ ├── 001.添加鉴权.md │ ├── 002.笔记支持移动.md │ ├── 003.后端工程的标准结构.md │ ├── 004.LLM 模块设计.md │ ├── 005.支持切换双列卡片流.md │ ├── 006.LLM会话管理.md │ ├── 007.AppFlowyEditor.md │ ├── 008.AppFlowyEditor LaTeX.md │ └── 009.双链笔记.md ├── notes │ └── SQLAlchemy │ │ └── hybrid_property.md └── screenshot2025-02-23.png ├── emacs ├── main.el └── ray-info.el ├── raysystem ├── .gitignore ├── .python-version ├── .vscode │ └── settings.json ├── README.md ├── RaySystemConfig.example.yaml ├── alembic.ini ├── docs │ ├── module_structure_guide.md │ └── ray_scheduler_usage.md ├── main.py ├── make_migration.sh ├── migrations │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 09a7180cb8b5_info_add_storage_html.py │ │ ├── 1d2096bbfdff_raysystem_migration.py │ │ ├── 4918d64178d6_raysystem_migration.py │ │ ├── 4ff507e26b13_people_people_add_more_names.py │ │ ├── 711ec8f2a63c_raysystem_migration.py │ │ ├── 760764980ad9_raysystem_migration.py │ │ ├── a0e5b18ff5c9_raysystem_migration.py │ │ ├── ce3a41c917b1_raysystem_migration.py │ │ ├── e3a6362f26d7_raysystem_migration.py │ │ ├── e667c1aea8f1_site_rename_url_to_host.py │ │ └── fc0446d32712_site_info_unique_for_host_and_url.py ├── module │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ └── constants.py │ ├── browser │ │ ├── __init__.py │ │ └── browser.py │ ├── crawler │ │ ├── __init__.py │ │ ├── ddg │ │ │ ├── __init__.py │ │ │ └── ddg.py │ │ ├── rss │ │ │ ├── __init__.py │ │ │ └── rss_collector.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_crawler.py │ ├── db │ │ ├── __init__.py │ │ ├── base.py │ │ └── db.py │ ├── early_sleeping │ │ ├── __init__.py │ │ └── early_sleeping.py │ ├── fs │ │ ├── README.md │ │ ├── __init__.py │ │ └── fs.py │ ├── http │ │ ├── __init__.py │ │ └── http.py │ ├── info │ │ ├── __init__.py │ │ ├── api.py │ │ ├── info.py │ │ ├── model.py │ │ ├── schemas.py │ │ └── utils.py │ ├── llm │ │ ├── __init__.py │ │ ├── api.py │ │ ├── chat_session.py │ │ ├── llm.py │ │ ├── model.py │ │ └── schemas.py │ ├── note │ │ ├── __init__.py │ │ ├── api.py │ │ ├── events.py │ │ ├── model.py │ │ ├── note.py │ │ └── schema.py │ ├── ocr │ │ ├── __init__.py │ │ ├── api.py │ │ └── ocr.py │ ├── people │ │ ├── __init__.py │ │ ├── api.py │ │ ├── core.py │ │ ├── model.py │ │ ├── people.py │ │ └── schemas.py │ ├── repl │ │ ├── __init__.py │ │ └── repl.py │ ├── storage │ │ ├── README.md │ │ ├── __init__.py │ │ └── storage.py │ ├── system │ │ ├── __init__.py │ │ ├── api.py │ │ ├── system.py │ │ └── utils.py │ ├── task_queue │ │ ├── __init__.py │ │ └── task_queue.py │ └── task_scheduler │ │ ├── __init__.py │ │ ├── api.py │ │ ├── model.py │ │ └── task_scheduler.py ├── open_config.sh ├── pyproject.toml ├── raysystem.egg-info │ └── requires.txt ├── run_migrate.sh ├── run_tests.sh ├── tests │ ├── __init__.py │ ├── conftest.py │ └── module │ │ ├── __init__.py │ │ ├── info │ │ ├── __init__.py │ │ ├── test_info.py │ │ ├── test_site.py │ │ └── test_utils.py │ │ ├── note │ │ ├── __init__.py │ │ └── test_note_hierarchy.py │ │ └── task_scheduler │ │ ├── test_task_scheduler.py │ │ └── test_task_scheduler_api.py ├── utils │ ├── __init__.py │ ├── config.py │ ├── file.py │ └── logger.py └── uv.lock ├── raysystem_flutter ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── raysystem_flutter │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── api │ ├── .gitignore │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ │ ├── FILES │ │ └── VERSION │ ├── README.md │ ├── analysis_options.yaml │ ├── doc │ │ ├── ChatCompletionRequest.md │ │ ├── ChatCompletionResponse.md │ │ ├── ChatMessageInput.md │ │ ├── ChatMessageOutput.md │ │ ├── ChatSessionCreate.md │ │ ├── ChatSessionResponse.md │ │ ├── ChatSessionUpdate.md │ │ ├── ChatSessionsApi.md │ │ ├── ChatSessionsListResponse.md │ │ ├── DefaultApi.md │ │ ├── DiskMetrics.md │ │ ├── HTTPValidationError.md │ │ ├── InfoList.md │ │ ├── InfoResponse.md │ │ ├── InfoStats.md │ │ ├── LLMApi.md │ │ ├── ListModelsResponse.md │ │ ├── MemoryMetrics.md │ │ ├── ModelInfo.md │ │ ├── NetworkMetrics.md │ │ ├── NoteCreate.md │ │ ├── NoteResponse.md │ │ ├── NoteTitleBase.md │ │ ├── NoteTitleCreate.md │ │ ├── NoteTitleResponse.md │ │ ├── NoteTitleUpdate.md │ │ ├── NoteTitlesApi.md │ │ ├── NoteTreeNode.md │ │ ├── NoteTreeResponse.md │ │ ├── NoteUpdate.md │ │ ├── NotesApi.md │ │ ├── NotesListResponse.md │ │ ├── PeopleApi.md │ │ ├── PeopleCreate.md │ │ ├── PeopleListResponse.md │ │ ├── PeopleNameCreate.md │ │ ├── PeopleNameResponse.md │ │ ├── PeopleResponse.md │ │ ├── PeopleUpdate.md │ │ ├── ResponseGetMetricsSystemMetricsGet.md │ │ ├── ScheduledTaskResponse.md │ │ ├── Site.md │ │ ├── SiteCreate.md │ │ ├── SystemMetrics.md │ │ ├── TaskScheduleType.md │ │ ├── ValidationError.md │ │ └── ValidationErrorLocInner.md │ ├── lib │ │ ├── openapi.dart │ │ └── src │ │ │ ├── api.dart │ │ │ ├── api │ │ │ ├── chat_sessions_api.dart │ │ │ ├── default_api.dart │ │ │ ├── llm_api.dart │ │ │ ├── note_titles_api.dart │ │ │ ├── notes_api.dart │ │ │ └── people_api.dart │ │ │ ├── api_util.dart │ │ │ ├── auth │ │ │ ├── api_key_auth.dart │ │ │ ├── auth.dart │ │ │ ├── basic_auth.dart │ │ │ ├── bearer_auth.dart │ │ │ └── oauth.dart │ │ │ ├── date_serializer.dart │ │ │ ├── model │ │ │ ├── chat_completion_request.dart │ │ │ ├── chat_completion_request.g.dart │ │ │ ├── chat_completion_response.dart │ │ │ ├── chat_completion_response.g.dart │ │ │ ├── chat_message_input.dart │ │ │ ├── chat_message_input.g.dart │ │ │ ├── chat_message_output.dart │ │ │ ├── chat_message_output.g.dart │ │ │ ├── chat_session_create.dart │ │ │ ├── chat_session_create.g.dart │ │ │ ├── chat_session_response.dart │ │ │ ├── chat_session_response.g.dart │ │ │ ├── chat_session_update.dart │ │ │ ├── chat_session_update.g.dart │ │ │ ├── chat_sessions_list_response.dart │ │ │ ├── chat_sessions_list_response.g.dart │ │ │ ├── date.dart │ │ │ ├── disk_metrics.dart │ │ │ ├── disk_metrics.g.dart │ │ │ ├── http_validation_error.dart │ │ │ ├── http_validation_error.g.dart │ │ │ ├── info_list.dart │ │ │ ├── info_list.g.dart │ │ │ ├── info_response.dart │ │ │ ├── info_response.g.dart │ │ │ ├── info_stats.dart │ │ │ ├── info_stats.g.dart │ │ │ ├── list_models_response.dart │ │ │ ├── list_models_response.g.dart │ │ │ ├── memory_metrics.dart │ │ │ ├── memory_metrics.g.dart │ │ │ ├── model_info.dart │ │ │ ├── model_info.g.dart │ │ │ ├── network_metrics.dart │ │ │ ├── network_metrics.g.dart │ │ │ ├── note_create.dart │ │ │ ├── note_create.g.dart │ │ │ ├── note_response.dart │ │ │ ├── note_response.g.dart │ │ │ ├── note_title_base.dart │ │ │ ├── note_title_base.g.dart │ │ │ ├── note_title_create.dart │ │ │ ├── note_title_create.g.dart │ │ │ ├── note_title_response.dart │ │ │ ├── note_title_response.g.dart │ │ │ ├── note_title_update.dart │ │ │ ├── note_title_update.g.dart │ │ │ ├── note_tree_node.dart │ │ │ ├── note_tree_node.g.dart │ │ │ ├── note_tree_response.dart │ │ │ ├── note_tree_response.g.dart │ │ │ ├── note_update.dart │ │ │ ├── note_update.g.dart │ │ │ ├── notes_list_response.dart │ │ │ ├── notes_list_response.g.dart │ │ │ ├── people_create.dart │ │ │ ├── people_create.g.dart │ │ │ ├── people_list_response.dart │ │ │ ├── people_list_response.g.dart │ │ │ ├── people_name_create.dart │ │ │ ├── people_name_create.g.dart │ │ │ ├── people_name_response.dart │ │ │ ├── people_name_response.g.dart │ │ │ ├── people_response.dart │ │ │ ├── people_response.g.dart │ │ │ ├── people_update.dart │ │ │ ├── people_update.g.dart │ │ │ ├── response_get_metrics_system_metrics_get.dart │ │ │ ├── response_get_metrics_system_metrics_get.g.dart │ │ │ ├── scheduled_task_response.dart │ │ │ ├── scheduled_task_response.g.dart │ │ │ ├── site.dart │ │ │ ├── site.g.dart │ │ │ ├── site_create.dart │ │ │ ├── site_create.g.dart │ │ │ ├── system_metrics.dart │ │ │ ├── system_metrics.g.dart │ │ │ ├── task_schedule_type.dart │ │ │ ├── task_schedule_type.g.dart │ │ │ ├── validation_error.dart │ │ │ ├── validation_error.g.dart │ │ │ ├── validation_error_loc_inner.dart │ │ │ └── validation_error_loc_inner.g.dart │ │ │ ├── serializers.dart │ │ │ └── serializers.g.dart │ ├── pubspec.yaml │ └── test │ │ ├── chat_completion_request_test.dart │ │ ├── chat_completion_response_test.dart │ │ ├── chat_message_input_test.dart │ │ ├── chat_message_output_test.dart │ │ ├── chat_session_create_test.dart │ │ ├── chat_session_response_test.dart │ │ ├── chat_session_update_test.dart │ │ ├── chat_sessions_api_test.dart │ │ ├── chat_sessions_list_response_test.dart │ │ ├── default_api_test.dart │ │ ├── disk_metrics_test.dart │ │ ├── http_validation_error_test.dart │ │ ├── info_list_test.dart │ │ ├── info_response_test.dart │ │ ├── info_stats_test.dart │ │ ├── list_models_response_test.dart │ │ ├── llm_api_test.dart │ │ ├── memory_metrics_test.dart │ │ ├── model_info_test.dart │ │ ├── network_metrics_test.dart │ │ ├── note_create_test.dart │ │ ├── note_response_test.dart │ │ ├── note_title_base_test.dart │ │ ├── note_title_create_test.dart │ │ ├── note_title_response_test.dart │ │ ├── note_title_update_test.dart │ │ ├── note_titles_api_test.dart │ │ ├── note_tree_node_test.dart │ │ ├── note_tree_response_test.dart │ │ ├── note_update_test.dart │ │ ├── notes_api_test.dart │ │ ├── notes_list_response_test.dart │ │ ├── people_api_test.dart │ │ ├── people_create_test.dart │ │ ├── people_list_response_test.dart │ │ ├── people_name_create_test.dart │ │ ├── people_name_response_test.dart │ │ ├── people_response_test.dart │ │ ├── people_update_test.dart │ │ ├── response_get_metrics_system_metrics_get_test.dart │ │ ├── scheduled_task_response_test.dart │ │ ├── site_create_test.dart │ │ ├── site_test.dart │ │ ├── system_metrics_test.dart │ │ ├── task_schedule_type_test.dart │ │ ├── validation_error_loc_inner_test.dart │ │ └── validation_error_test.dart ├── assets │ └── js │ │ └── network_listener.js ├── build_macos.sh ├── build_runner.sh ├── devtools_options.yaml ├── docs │ ├── card.md │ └── editor_styling_guide.md ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift ├── lib │ ├── api │ │ ├── api.dart │ │ └── api_provider.dart │ ├── card │ │ ├── card_list_view.dart │ │ ├── card_manager.dart │ │ └── recent_notes_list_card.dart │ ├── commands.dart │ ├── commands │ │ ├── command.dart │ │ ├── info_commands.dart │ │ ├── llm_commands.dart │ │ ├── note_commands.dart │ │ ├── playground_commands.dart │ │ ├── scheduler_commands.dart │ │ ├── settings_commands.dart │ │ ├── text_commands.dart │ │ └── todo_commands.dart │ ├── component │ │ ├── card │ │ │ └── ray_card.dart │ │ ├── ocr_card.dart │ │ ├── status_bar │ │ │ ├── items │ │ │ │ └── always_on_top.dart │ │ │ └── status_bar.dart │ │ ├── system_metrics_provider.dart │ │ └── widgets │ │ │ └── mac_os_buttons.dart │ ├── form │ │ ├── form_dialog.dart │ │ ├── form_field.dart │ │ └── form_manager.dart │ ├── main.dart │ ├── module │ │ ├── browser │ │ │ ├── browser_commands.dart │ │ │ ├── component │ │ │ │ ├── browser_card │ │ │ │ │ └── browser_card.dart │ │ │ │ └── browser_window │ │ │ │ │ └── browser_window.dart │ │ │ ├── debug │ │ │ │ ├── browser_debug_manager.dart │ │ │ │ ├── browser_debug_state.dart │ │ │ │ └── browser_dev_tools_card.dart │ │ │ └── utils │ │ │ │ ├── browser_utils.dart │ │ │ │ └── network_listener.dart │ │ ├── editor │ │ │ ├── blocks │ │ │ │ └── code │ │ │ │ │ ├── code_block_actions.dart │ │ │ │ │ ├── code_block_block_component.dart │ │ │ │ │ ├── code_block_constants.dart │ │ │ │ │ ├── code_block_localization.dart │ │ │ │ │ ├── code_block_shortcuts.dart │ │ │ │ │ ├── code_block_style.dart │ │ │ │ │ ├── code_block_themes.dart │ │ │ │ │ ├── code_block_toolbar_item.dart │ │ │ │ │ └── plugin.dart │ │ │ └── editor.dart │ │ ├── llm │ │ │ ├── api │ │ │ │ └── llm_service.dart │ │ │ ├── components │ │ │ │ ├── chat_header.dart │ │ │ │ ├── chat_input_field.dart │ │ │ │ ├── chat_message_bubble.dart │ │ │ │ ├── chat_messages_area.dart │ │ │ │ ├── chat_sessions_sidebar.dart │ │ │ │ ├── chat_settings_panel.dart │ │ │ │ ├── llm_chat_card.dart │ │ │ │ └── prompt_selector.dart │ │ │ ├── llm.dart │ │ │ └── models │ │ │ │ ├── chat_message.dart │ │ │ │ ├── chat_prompt.dart │ │ │ │ ├── chat_session.dart │ │ │ │ └── chat_session_model.dart │ │ ├── note │ │ │ ├── api │ │ │ │ ├── note │ │ │ │ │ ├── api_note_service.dart │ │ │ │ │ └── note_service.dart │ │ │ │ └── note_tree │ │ │ │ │ ├── api_note_tree_service.dart │ │ │ │ │ └── note_tree_service.dart │ │ │ ├── components │ │ │ │ ├── note │ │ │ │ │ ├── note_card.dart │ │ │ │ │ └── provider │ │ │ │ │ │ └── note_service_provider.dart │ │ │ │ └── note_tree │ │ │ │ │ ├── note_tree_card.dart │ │ │ │ │ ├── note_tree_card_controller.dart │ │ │ │ │ ├── note_tree_view.dart │ │ │ │ │ └── painters.dart │ │ │ ├── model │ │ │ │ └── note_tree_model.dart │ │ │ └── providers │ │ │ │ └── notes_provider.dart │ │ └── people │ │ │ ├── cards │ │ │ ├── people_card │ │ │ │ ├── people_card.dart │ │ │ │ └── people_card_view_model.dart │ │ │ ├── recent_people │ │ │ │ ├── README.md │ │ │ │ ├── recent_people_card.dart │ │ │ │ └── recent_people_view_model.dart │ │ │ └── search_people │ │ │ │ └── search_people_card.dart │ │ │ └── people_commands.dart │ └── utils │ │ └── string_ext.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ └── runner │ │ ├── CMakeLists.txt │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift ├── openapi_generator_config.json ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── todo.md /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | __pycache__/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.typeCheckingMode": "standard" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/README.md -------------------------------------------------------------------------------- /docs/arch/RaySystem 整体架构.v0.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/arch/RaySystem 整体架构.v0.1.svg -------------------------------------------------------------------------------- /docs/develop/001.添加鉴权.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/001.添加鉴权.md -------------------------------------------------------------------------------- /docs/develop/002.笔记支持移动.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/002.笔记支持移动.md -------------------------------------------------------------------------------- /docs/develop/003.后端工程的标准结构.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/003.后端工程的标准结构.md -------------------------------------------------------------------------------- /docs/develop/004.LLM 模块设计.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/004.LLM 模块设计.md -------------------------------------------------------------------------------- /docs/develop/005.支持切换双列卡片流.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/005.支持切换双列卡片流.md -------------------------------------------------------------------------------- /docs/develop/006.LLM会话管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/006.LLM会话管理.md -------------------------------------------------------------------------------- /docs/develop/007.AppFlowyEditor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/007.AppFlowyEditor.md -------------------------------------------------------------------------------- /docs/develop/008.AppFlowyEditor LaTeX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/008.AppFlowyEditor LaTeX.md -------------------------------------------------------------------------------- /docs/develop/009.双链笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/develop/009.双链笔记.md -------------------------------------------------------------------------------- /docs/notes/SQLAlchemy/hybrid_property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/notes/SQLAlchemy/hybrid_property.md -------------------------------------------------------------------------------- /docs/screenshot2025-02-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/docs/screenshot2025-02-23.png -------------------------------------------------------------------------------- /emacs/main.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/emacs/main.el -------------------------------------------------------------------------------- /emacs/ray-info.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/emacs/ray-info.el -------------------------------------------------------------------------------- /raysystem/.gitignore: -------------------------------------------------------------------------------- 1 | .coverage 2 | logs/ -------------------------------------------------------------------------------- /raysystem/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /raysystem/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/.vscode/settings.json -------------------------------------------------------------------------------- /raysystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/README.md -------------------------------------------------------------------------------- /raysystem/RaySystemConfig.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/RaySystemConfig.example.yaml -------------------------------------------------------------------------------- /raysystem/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/alembic.ini -------------------------------------------------------------------------------- /raysystem/docs/module_structure_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/docs/module_structure_guide.md -------------------------------------------------------------------------------- /raysystem/docs/ray_scheduler_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/docs/ray_scheduler_usage.md -------------------------------------------------------------------------------- /raysystem/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/main.py -------------------------------------------------------------------------------- /raysystem/make_migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/make_migration.sh -------------------------------------------------------------------------------- /raysystem/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /raysystem/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/env.py -------------------------------------------------------------------------------- /raysystem/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/script.py.mako -------------------------------------------------------------------------------- /raysystem/migrations/versions/09a7180cb8b5_info_add_storage_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/09a7180cb8b5_info_add_storage_html.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/1d2096bbfdff_raysystem_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/1d2096bbfdff_raysystem_migration.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/4918d64178d6_raysystem_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/4918d64178d6_raysystem_migration.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/4ff507e26b13_people_people_add_more_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/4ff507e26b13_people_people_add_more_names.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/711ec8f2a63c_raysystem_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/711ec8f2a63c_raysystem_migration.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/760764980ad9_raysystem_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/760764980ad9_raysystem_migration.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/a0e5b18ff5c9_raysystem_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/a0e5b18ff5c9_raysystem_migration.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/ce3a41c917b1_raysystem_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/ce3a41c917b1_raysystem_migration.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/e3a6362f26d7_raysystem_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/e3a6362f26d7_raysystem_migration.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/e667c1aea8f1_site_rename_url_to_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/e667c1aea8f1_site_rename_url_to_host.py -------------------------------------------------------------------------------- /raysystem/migrations/versions/fc0446d32712_site_info_unique_for_host_and_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/migrations/versions/fc0446d32712_site_info_unique_for_host_and_url.py -------------------------------------------------------------------------------- /raysystem/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/base/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/base/constants.py -------------------------------------------------------------------------------- /raysystem/module/browser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/browser/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/browser/browser.py -------------------------------------------------------------------------------- /raysystem/module/crawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/crawler/ddg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/crawler/ddg/ddg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/crawler/ddg/ddg.py -------------------------------------------------------------------------------- /raysystem/module/crawler/rss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/crawler/rss/rss_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/crawler/rss/rss_collector.py -------------------------------------------------------------------------------- /raysystem/module/crawler/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/crawler/test/test_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/crawler/test/test_crawler.py -------------------------------------------------------------------------------- /raysystem/module/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/db/base.py -------------------------------------------------------------------------------- /raysystem/module/db/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/db/db.py -------------------------------------------------------------------------------- /raysystem/module/early_sleeping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/early_sleeping/early_sleeping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/early_sleeping/early_sleeping.py -------------------------------------------------------------------------------- /raysystem/module/fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/fs/README.md -------------------------------------------------------------------------------- /raysystem/module/fs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/fs/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/fs/fs.py -------------------------------------------------------------------------------- /raysystem/module/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/http/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/http/http.py -------------------------------------------------------------------------------- /raysystem/module/info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/info/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/info/api.py -------------------------------------------------------------------------------- /raysystem/module/info/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/info/info.py -------------------------------------------------------------------------------- /raysystem/module/info/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/info/model.py -------------------------------------------------------------------------------- /raysystem/module/info/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/info/schemas.py -------------------------------------------------------------------------------- /raysystem/module/info/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/info/utils.py -------------------------------------------------------------------------------- /raysystem/module/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/llm/__init__.py -------------------------------------------------------------------------------- /raysystem/module/llm/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/llm/api.py -------------------------------------------------------------------------------- /raysystem/module/llm/chat_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/llm/chat_session.py -------------------------------------------------------------------------------- /raysystem/module/llm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/llm/llm.py -------------------------------------------------------------------------------- /raysystem/module/llm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/llm/model.py -------------------------------------------------------------------------------- /raysystem/module/llm/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/llm/schemas.py -------------------------------------------------------------------------------- /raysystem/module/note/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/note/__init__.py -------------------------------------------------------------------------------- /raysystem/module/note/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/note/api.py -------------------------------------------------------------------------------- /raysystem/module/note/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/note/events.py -------------------------------------------------------------------------------- /raysystem/module/note/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/note/model.py -------------------------------------------------------------------------------- /raysystem/module/note/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/note/note.py -------------------------------------------------------------------------------- /raysystem/module/note/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/note/schema.py -------------------------------------------------------------------------------- /raysystem/module/ocr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/ocr/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/ocr/api.py -------------------------------------------------------------------------------- /raysystem/module/ocr/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/ocr/ocr.py -------------------------------------------------------------------------------- /raysystem/module/people/__init__.py: -------------------------------------------------------------------------------- 1 | from .api import router 2 | -------------------------------------------------------------------------------- /raysystem/module/people/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/people/api.py -------------------------------------------------------------------------------- /raysystem/module/people/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/people/core.py -------------------------------------------------------------------------------- /raysystem/module/people/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/people/model.py -------------------------------------------------------------------------------- /raysystem/module/people/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/people/people.py -------------------------------------------------------------------------------- /raysystem/module/people/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/people/schemas.py -------------------------------------------------------------------------------- /raysystem/module/repl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/repl/repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/repl/repl.py -------------------------------------------------------------------------------- /raysystem/module/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/storage/README.md -------------------------------------------------------------------------------- /raysystem/module/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/storage/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/storage/storage.py -------------------------------------------------------------------------------- /raysystem/module/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/system/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/system/api.py -------------------------------------------------------------------------------- /raysystem/module/system/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/system/system.py -------------------------------------------------------------------------------- /raysystem/module/system/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/system/utils.py -------------------------------------------------------------------------------- /raysystem/module/task_queue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/task_queue/task_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/task_queue/task_queue.py -------------------------------------------------------------------------------- /raysystem/module/task_scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/module/task_scheduler/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/task_scheduler/api.py -------------------------------------------------------------------------------- /raysystem/module/task_scheduler/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/task_scheduler/model.py -------------------------------------------------------------------------------- /raysystem/module/task_scheduler/task_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/module/task_scheduler/task_scheduler.py -------------------------------------------------------------------------------- /raysystem/open_config.sh: -------------------------------------------------------------------------------- 1 | code-insiders ~/.RaySystemConfig.yaml -------------------------------------------------------------------------------- /raysystem/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/pyproject.toml -------------------------------------------------------------------------------- /raysystem/raysystem.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/raysystem.egg-info/requires.txt -------------------------------------------------------------------------------- /raysystem/run_migrate.sh: -------------------------------------------------------------------------------- 1 | uv run alembic upgrade head -------------------------------------------------------------------------------- /raysystem/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/run_tests.sh -------------------------------------------------------------------------------- /raysystem/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/tests/conftest.py -------------------------------------------------------------------------------- /raysystem/tests/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/tests/module/info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/tests/module/info/test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/tests/module/info/test_info.py -------------------------------------------------------------------------------- /raysystem/tests/module/info/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/tests/module/info/test_site.py -------------------------------------------------------------------------------- /raysystem/tests/module/info/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/tests/module/info/test_utils.py -------------------------------------------------------------------------------- /raysystem/tests/module/note/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/tests/module/note/test_note_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/tests/module/note/test_note_hierarchy.py -------------------------------------------------------------------------------- /raysystem/tests/module/task_scheduler/test_task_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/tests/module/task_scheduler/test_task_scheduler.py -------------------------------------------------------------------------------- /raysystem/tests/module/task_scheduler/test_task_scheduler_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/tests/module/task_scheduler/test_task_scheduler_api.py -------------------------------------------------------------------------------- /raysystem/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysystem/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/utils/config.py -------------------------------------------------------------------------------- /raysystem/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/utils/file.py -------------------------------------------------------------------------------- /raysystem/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/utils/logger.py -------------------------------------------------------------------------------- /raysystem/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem/uv.lock -------------------------------------------------------------------------------- /raysystem_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/.gitignore -------------------------------------------------------------------------------- /raysystem_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/.metadata -------------------------------------------------------------------------------- /raysystem_flutter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/.vscode/launch.json -------------------------------------------------------------------------------- /raysystem_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/README.md -------------------------------------------------------------------------------- /raysystem_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /raysystem_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/.gitignore -------------------------------------------------------------------------------- /raysystem_flutter/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/build.gradle -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/kotlin/com/example/raysystem_flutter/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/kotlin/com/example/raysystem_flutter/MainActivity.kt -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /raysystem_flutter/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /raysystem_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/build.gradle -------------------------------------------------------------------------------- /raysystem_flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/gradle.properties -------------------------------------------------------------------------------- /raysystem_flutter/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /raysystem_flutter/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/android/settings.gradle -------------------------------------------------------------------------------- /raysystem_flutter/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/.gitignore -------------------------------------------------------------------------------- /raysystem_flutter/api/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/.openapi-generator-ignore -------------------------------------------------------------------------------- /raysystem_flutter/api/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/.openapi-generator/FILES -------------------------------------------------------------------------------- /raysystem_flutter/api/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.9.0 2 | -------------------------------------------------------------------------------- /raysystem_flutter/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/README.md -------------------------------------------------------------------------------- /raysystem_flutter/api/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/analysis_options.yaml -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatCompletionRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatCompletionRequest.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatCompletionResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatCompletionResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatMessageInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatMessageInput.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatMessageOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatMessageOutput.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatSessionCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatSessionCreate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatSessionResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatSessionResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatSessionUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatSessionUpdate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatSessionsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatSessionsApi.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ChatSessionsListResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ChatSessionsListResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/DefaultApi.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/DiskMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/DiskMetrics.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/HTTPValidationError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/HTTPValidationError.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/InfoList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/InfoList.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/InfoResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/InfoResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/InfoStats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/InfoStats.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/LLMApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/LLMApi.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ListModelsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ListModelsResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/MemoryMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/MemoryMetrics.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ModelInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ModelInfo.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NetworkMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NetworkMetrics.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteCreate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteTitleBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteTitleBase.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteTitleCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteTitleCreate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteTitleResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteTitleResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteTitleUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteTitleUpdate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteTitlesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteTitlesApi.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteTreeNode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteTreeNode.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteTreeResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteTreeResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NoteUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NoteUpdate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NotesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NotesApi.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/NotesListResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/NotesListResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/PeopleApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/PeopleApi.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/PeopleCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/PeopleCreate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/PeopleListResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/PeopleListResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/PeopleNameCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/PeopleNameCreate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/PeopleNameResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/PeopleNameResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/PeopleResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/PeopleResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/PeopleUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/PeopleUpdate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ResponseGetMetricsSystemMetricsGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ResponseGetMetricsSystemMetricsGet.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ScheduledTaskResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ScheduledTaskResponse.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/Site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/Site.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/SiteCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/SiteCreate.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/SystemMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/SystemMetrics.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/TaskScheduleType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/TaskScheduleType.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ValidationError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ValidationError.md -------------------------------------------------------------------------------- /raysystem_flutter/api/doc/ValidationErrorLocInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/doc/ValidationErrorLocInner.md -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/openapi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/openapi.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/api.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/api/chat_sessions_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/api/chat_sessions_api.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/api/default_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/api/default_api.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/api/llm_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/api/llm_api.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/api/note_titles_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/api/note_titles_api.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/api/notes_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/api/notes_api.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/api/people_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/api/people_api.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/api_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/api_util.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/auth/api_key_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/auth/api_key_auth.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/auth/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/auth/auth.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/auth/basic_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/auth/basic_auth.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/auth/bearer_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/auth/bearer_auth.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/auth/oauth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/auth/oauth.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/date_serializer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/date_serializer.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_completion_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_completion_request.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_completion_request.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_completion_request.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_completion_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_completion_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_completion_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_completion_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_message_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_message_input.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_message_input.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_message_input.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_message_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_message_output.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_message_output.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_message_output.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_session_create.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_session_create.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_session_create.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_session_create.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_session_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_session_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_session_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_session_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_session_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_session_update.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_session_update.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_session_update.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_sessions_list_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_sessions_list_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/chat_sessions_list_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/chat_sessions_list_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/date.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/date.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/disk_metrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/disk_metrics.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/disk_metrics.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/disk_metrics.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/http_validation_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/http_validation_error.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/http_validation_error.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/http_validation_error.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/info_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/info_list.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/info_list.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/info_list.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/info_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/info_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/info_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/info_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/info_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/info_stats.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/info_stats.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/info_stats.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/list_models_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/list_models_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/list_models_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/list_models_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/memory_metrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/memory_metrics.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/memory_metrics.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/memory_metrics.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/model_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/model_info.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/model_info.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/model_info.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/network_metrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/network_metrics.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/network_metrics.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/network_metrics.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_create.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_create.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_create.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_create.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_title_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_title_base.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_title_base.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_title_base.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_title_create.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_title_create.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_title_create.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_title_create.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_title_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_title_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_title_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_title_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_title_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_title_update.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_title_update.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_title_update.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_tree_node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_tree_node.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_tree_node.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_tree_node.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_tree_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_tree_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_tree_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_tree_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_update.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/note_update.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/note_update.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/notes_list_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/notes_list_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/notes_list_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/notes_list_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_create.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_create.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_create.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_create.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_list_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_list_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_list_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_list_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_name_create.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_name_create.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_name_create.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_name_create.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_name_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_name_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_name_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_name_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_update.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/people_update.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/people_update.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/response_get_metrics_system_metrics_get.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/response_get_metrics_system_metrics_get.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/response_get_metrics_system_metrics_get.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/response_get_metrics_system_metrics_get.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/scheduled_task_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/scheduled_task_response.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/scheduled_task_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/scheduled_task_response.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/site.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/site.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/site.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/site.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/site_create.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/site_create.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/site_create.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/site_create.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/system_metrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/system_metrics.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/system_metrics.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/system_metrics.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/task_schedule_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/task_schedule_type.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/task_schedule_type.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/task_schedule_type.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/validation_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/validation_error.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/validation_error.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/validation_error.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/validation_error_loc_inner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/validation_error_loc_inner.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/model/validation_error_loc_inner.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/model/validation_error_loc_inner.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/serializers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/serializers.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/lib/src/serializers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/lib/src/serializers.g.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/pubspec.yaml -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_completion_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_completion_request_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_completion_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_completion_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_message_input_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_message_input_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_message_output_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_message_output_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_session_create_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_session_create_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_session_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_session_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_session_update_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_session_update_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_sessions_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_sessions_api_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/chat_sessions_list_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/chat_sessions_list_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/default_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/default_api_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/disk_metrics_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/disk_metrics_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/http_validation_error_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/http_validation_error_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/info_list_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/info_list_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/info_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/info_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/info_stats_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/info_stats_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/list_models_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/list_models_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/llm_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/llm_api_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/memory_metrics_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/memory_metrics_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/model_info_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/model_info_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/network_metrics_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/network_metrics_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_create_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_create_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_title_base_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_title_base_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_title_create_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_title_create_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_title_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_title_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_title_update_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_title_update_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_titles_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_titles_api_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_tree_node_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_tree_node_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_tree_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_tree_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/note_update_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/note_update_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/notes_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/notes_api_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/notes_list_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/notes_list_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/people_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/people_api_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/people_create_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/people_create_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/people_list_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/people_list_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/people_name_create_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/people_name_create_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/people_name_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/people_name_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/people_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/people_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/people_update_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/people_update_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/response_get_metrics_system_metrics_get_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/response_get_metrics_system_metrics_get_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/scheduled_task_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/scheduled_task_response_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/site_create_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/site_create_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/site_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/site_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/system_metrics_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/system_metrics_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/task_schedule_type_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/task_schedule_type_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/validation_error_loc_inner_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/validation_error_loc_inner_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/api/test/validation_error_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/api/test/validation_error_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/assets/js/network_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/assets/js/network_listener.js -------------------------------------------------------------------------------- /raysystem_flutter/build_macos.sh: -------------------------------------------------------------------------------- 1 | flutter build macos --release -------------------------------------------------------------------------------- /raysystem_flutter/build_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/build_runner.sh -------------------------------------------------------------------------------- /raysystem_flutter/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/devtools_options.yaml -------------------------------------------------------------------------------- /raysystem_flutter/docs/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/docs/card.md -------------------------------------------------------------------------------- /raysystem_flutter/docs/editor_styling_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/docs/editor_styling_guide.md -------------------------------------------------------------------------------- /raysystem_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/.gitignore -------------------------------------------------------------------------------- /raysystem_flutter/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /raysystem_flutter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /raysystem_flutter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /raysystem_flutter/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Podfile -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/Runner/Info.plist -------------------------------------------------------------------------------- /raysystem_flutter/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /raysystem_flutter/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /raysystem_flutter/lib/api/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/api/api.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/api/api_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/api/api_provider.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/card/card_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/card/card_list_view.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/card/card_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/card/card_manager.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/card/recent_notes_list_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/card/recent_notes_list_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/command.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/info_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/info_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/llm_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/llm_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/note_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/note_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/playground_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/playground_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/scheduler_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/scheduler_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/settings_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/settings_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/text_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/text_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/commands/todo_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/commands/todo_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/component/card/ray_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/component/card/ray_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/component/ocr_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/component/ocr_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/component/status_bar/items/always_on_top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/component/status_bar/items/always_on_top.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/component/status_bar/status_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/component/status_bar/status_bar.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/component/system_metrics_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/component/system_metrics_provider.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/component/widgets/mac_os_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/component/widgets/mac_os_buttons.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/form/form_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/form/form_dialog.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/form/form_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/form/form_field.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/form/form_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/form/form_manager.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/main.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/browser/browser_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/browser/browser_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/browser/component/browser_card/browser_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/browser/component/browser_card/browser_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/browser/component/browser_window/browser_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/browser/component/browser_window/browser_window.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/browser/debug/browser_debug_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/browser/debug/browser_debug_manager.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/browser/debug/browser_debug_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/browser/debug/browser_debug_state.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/browser/debug/browser_dev_tools_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/browser/debug/browser_dev_tools_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/browser/utils/browser_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/browser/utils/browser_utils.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/browser/utils/network_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/browser/utils/network_listener.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/code_block_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/code_block_actions.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/code_block_block_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/code_block_block_component.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/code_block_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/code_block_constants.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/code_block_localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/code_block_localization.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/code_block_shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/code_block_shortcuts.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/code_block_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/code_block_style.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/code_block_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/code_block_themes.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/code_block_toolbar_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/code_block_toolbar_item.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/blocks/code/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/blocks/code/plugin.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/editor/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/editor/editor.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/api/llm_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/api/llm_service.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/components/chat_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/components/chat_header.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/components/chat_input_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/components/chat_input_field.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/components/chat_message_bubble.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/components/chat_message_bubble.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/components/chat_messages_area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/components/chat_messages_area.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/components/chat_sessions_sidebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/components/chat_sessions_sidebar.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/components/chat_settings_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/components/chat_settings_panel.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/components/llm_chat_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/components/llm_chat_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/components/prompt_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/components/prompt_selector.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/llm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/llm.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/models/chat_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/models/chat_message.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/models/chat_prompt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/models/chat_prompt.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/models/chat_session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/models/chat_session.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/llm/models/chat_session_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/llm/models/chat_session_model.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/api/note/api_note_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/api/note/api_note_service.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/api/note/note_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/api/note/note_service.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/api/note_tree/api_note_tree_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/api/note_tree/api_note_tree_service.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/api/note_tree/note_tree_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/api/note_tree/note_tree_service.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/components/note/note_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/components/note/note_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/components/note/provider/note_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/components/note/provider/note_service_provider.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/components/note_tree/note_tree_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/components/note_tree/note_tree_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/components/note_tree/note_tree_card_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/components/note_tree/note_tree_card_controller.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/components/note_tree/note_tree_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/components/note_tree/note_tree_view.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/components/note_tree/painters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/components/note_tree/painters.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/model/note_tree_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/model/note_tree_model.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/note/providers/notes_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/note/providers/notes_provider.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/people/cards/people_card/people_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/people/cards/people_card/people_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/people/cards/people_card/people_card_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/people/cards/people_card/people_card_view_model.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/people/cards/recent_people/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/people/cards/recent_people/README.md -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/people/cards/recent_people/recent_people_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/people/cards/recent_people/recent_people_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/people/cards/recent_people/recent_people_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/people/cards/recent_people/recent_people_view_model.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/people/cards/search_people/search_people_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/people/cards/search_people/search_people_card.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/module/people/people_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/module/people/people_commands.dart -------------------------------------------------------------------------------- /raysystem_flutter/lib/utils/string_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/lib/utils/string_ext.dart -------------------------------------------------------------------------------- /raysystem_flutter/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /raysystem_flutter/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/CMakeLists.txt -------------------------------------------------------------------------------- /raysystem_flutter/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /raysystem_flutter/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /raysystem_flutter/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /raysystem_flutter/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /raysystem_flutter/linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/runner/CMakeLists.txt -------------------------------------------------------------------------------- /raysystem_flutter/linux/runner/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/runner/main.cc -------------------------------------------------------------------------------- /raysystem_flutter/linux/runner/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/runner/my_application.cc -------------------------------------------------------------------------------- /raysystem_flutter/linux/runner/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/linux/runner/my_application.h -------------------------------------------------------------------------------- /raysystem_flutter/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/.gitignore -------------------------------------------------------------------------------- /raysystem_flutter/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /raysystem_flutter/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /raysystem_flutter/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /raysystem_flutter/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Podfile -------------------------------------------------------------------------------- /raysystem_flutter/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Podfile.lock -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Info.plist -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /raysystem_flutter/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /raysystem_flutter/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /raysystem_flutter/openapi_generator_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/openapi_generator_config.json -------------------------------------------------------------------------------- /raysystem_flutter/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/pubspec.lock -------------------------------------------------------------------------------- /raysystem_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/pubspec.yaml -------------------------------------------------------------------------------- /raysystem_flutter/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/test/widget_test.dart -------------------------------------------------------------------------------- /raysystem_flutter/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/web/favicon.png -------------------------------------------------------------------------------- /raysystem_flutter/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/web/icons/Icon-192.png -------------------------------------------------------------------------------- /raysystem_flutter/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/web/icons/Icon-512.png -------------------------------------------------------------------------------- /raysystem_flutter/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /raysystem_flutter/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /raysystem_flutter/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/web/index.html -------------------------------------------------------------------------------- /raysystem_flutter/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/web/manifest.json -------------------------------------------------------------------------------- /raysystem_flutter/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/.gitignore -------------------------------------------------------------------------------- /raysystem_flutter/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/CMakeLists.txt -------------------------------------------------------------------------------- /raysystem_flutter/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /raysystem_flutter/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /raysystem_flutter/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /raysystem_flutter/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/Runner.rc -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/main.cpp -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/resource.h -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/utils.cpp -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/utils.h -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /raysystem_flutter/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/raysystem_flutter/windows/runner/win32_window.h -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxiee/RaySystem/HEAD/todo.md --------------------------------------------------------------------------------