├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature-request.yaml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── README_zh.md ├── examples ├── AMD_GPU │ ├── README.md │ └── README_zh.md ├── gui-agent │ ├── glm-41v │ │ ├── agent.jpg │ │ ├── agent.md │ │ ├── agent_zh.md │ │ └── gui_agent_41v.py │ └── glm-45v │ │ ├── agent.jpg │ │ ├── agent.md │ │ ├── agent_zh.md │ │ └── gui_agent_45v.py └── vlm-helper │ ├── .editorconfig │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc.yaml │ ├── README.md │ ├── README_zh.md │ ├── build │ ├── entitlements.mac.plist │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── icons │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ └── 96x96.png │ ├── docs │ └── images │ │ ├── floating-window.png │ │ ├── main-interface.png │ │ └── settings.png │ ├── electron-builder.yml │ ├── electron.vite.config.ts │ ├── eslint.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── resources │ └── icon.png │ ├── src │ ├── main │ │ ├── index.ts │ │ ├── modules │ │ │ ├── apiProxy.ts │ │ │ ├── ipcHandlers.ts │ │ │ ├── recordingManager.ts │ │ │ ├── shortcutManager.ts │ │ │ └── windowManager.ts │ │ ├── services │ │ │ └── database.ts │ │ ├── types │ │ │ └── window.ts │ │ └── utils │ │ │ ├── recordingUtils.ts │ │ │ ├── videoCompress.ts │ │ │ └── windowCreators.ts │ ├── preload │ │ ├── index.d.ts │ │ └── index.ts │ └── renderer │ │ ├── index.html │ │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── app-icon.png │ │ ├── icons │ │ │ ├── image.svg │ │ │ ├── pdf3.svg │ │ │ ├── ppt3.svg │ │ │ └── video.svg │ │ ├── main.css │ │ └── themes │ │ │ └── one-dark-pro.css │ │ ├── components │ │ ├── FloatingChat.vue │ │ ├── HistoryPanel.vue │ │ ├── MarkdownRenderer.vue │ │ ├── ThemeProvider.vue │ │ └── VideoPlayer.vue │ │ ├── composables │ │ ├── useChatFunctions.ts │ │ ├── useFileProcessing.ts │ │ ├── useRecording.ts │ │ ├── useScreenshot.ts │ │ ├── useSettingsInit.ts │ │ └── useTextProcessing.ts │ │ ├── env.d.ts │ │ ├── layouts │ │ ├── AppLayout.vue │ │ └── components │ │ │ └── AppHeader.vue │ │ ├── main.ts │ │ ├── stores │ │ ├── chatStore.ts │ │ └── settingsStore.ts │ │ ├── types │ │ └── index.ts │ │ ├── utils │ │ ├── errorHandler.ts │ │ ├── mediaUtils.ts │ │ ├── modelAPI.ts │ │ ├── pdfProcessor.ts │ │ ├── pptProcessor.ts │ │ └── timeFormat.ts │ │ └── views │ │ └── ChatView.vue │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── tsconfig.web.json │ └── uno.config.ts ├── glmv_reward ├── .gitignore ├── .python-version ├── README.md ├── README_zh.md ├── configs │ └── full_config.yaml ├── examples │ ├── configs │ │ └── example.yaml.template │ └── reward_system_demo.py ├── pyproject.toml ├── resources │ ├── WECHAT.md │ ├── logo.svg │ └── wechat.jpg ├── ruff.toml ├── scripts │ └── gui_agent │ │ ├── AndroidWorld.py │ │ ├── OSWorld.py │ │ └── WebVoyager.py ├── src │ └── glmv_reward │ │ ├── __init__.py │ │ ├── configs │ │ ├── __init__.py │ │ ├── reward_system.py │ │ └── verifiers │ │ │ ├── __init__.py │ │ │ ├── androidworld.py │ │ │ ├── biology.py │ │ │ ├── chart.py │ │ │ ├── chemistry.py │ │ │ ├── counting.py │ │ │ ├── file_based.py │ │ │ ├── general.py │ │ │ ├── geography.py │ │ │ ├── geoquest.py │ │ │ ├── language_mix.py │ │ │ ├── liberal_arts.py │ │ │ ├── long_doc.py │ │ │ ├── math.py │ │ │ ├── mmsi.py │ │ │ ├── multi_image.py │ │ │ ├── ocr.py │ │ │ ├── osworld.py │ │ │ ├── physics.py │ │ │ ├── vqa.py │ │ │ └── webvoyager.py │ │ ├── reward_system.py │ │ ├── utils │ │ ├── __init__.py │ │ ├── image.py │ │ ├── llm.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── msgspec.py │ │ ├── path.py │ │ ├── serialization.py │ │ └── text.py │ │ └── verifiers │ │ ├── __init__.py │ │ ├── _base_verifier.py │ │ ├── biology_verifier.py │ │ ├── chart_verifier.py │ │ ├── chemistry_verifier.py │ │ ├── counting_verifier.py │ │ ├── general_verifier.py │ │ ├── geography_verifier.py │ │ ├── geoquest_verifier.py │ │ ├── language_mix_verifier.py │ │ ├── liberal_arts_verifier.py │ │ ├── math_verifier.py │ │ ├── mmsi_verifier.py │ │ ├── multi_image_verifier.py │ │ ├── ocr_verifier.py │ │ ├── physics_verifier.py │ │ ├── verifier_from_file.py │ │ └── vqa_verifier.py ├── tests │ ├── chart │ │ └── test_chart_verifier.py │ ├── cogagent │ │ ├── test_android_world_verifier.py │ │ ├── test_osworld_verifier.py │ │ └── test_webvoyager_verifier.py │ ├── conftest.py │ ├── counting │ │ └── test_counting.py │ ├── general │ │ ├── __init__.py │ │ ├── test_counting_verifier.py │ │ ├── test_general_reward_model.py │ │ ├── test_general_verifier.py │ │ ├── test_general_verifier_math.py │ │ └── test_perception_verifier.py │ ├── geoquest │ │ └── test_geoquest.py │ ├── language_mix │ │ └── test_language_mix.py │ ├── mmsi │ │ └── test_mmsi_verifier.py │ ├── multi_image │ │ └── test_multi_image_general_verifier.py │ ├── ocr │ │ └── test_ocr_verifier.py │ ├── stem │ │ ├── test_chemistry_verifier.py │ │ ├── test_logic_verifier.py │ │ ├── test_math_verifier.py │ │ └── test_physics_verifier.py │ └── vqa │ │ └── test_vqa_verifier.py └── uv.lock ├── inference ├── html_detector.py ├── trans_infer_bench.py ├── trans_infer_cli.py └── trans_infer_gradio.py ├── requirements.txt └── resources ├── WECHAT.md ├── bench.jpeg ├── bench_45v.jpeg ├── logo.svg ├── rl.jpeg └── wechat.jpg /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/.github/ISSUE_TEMPLATE/feature-request.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/README_zh.md -------------------------------------------------------------------------------- /examples/AMD_GPU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/AMD_GPU/README.md -------------------------------------------------------------------------------- /examples/AMD_GPU/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/AMD_GPU/README_zh.md -------------------------------------------------------------------------------- /examples/gui-agent/glm-41v/agent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/gui-agent/glm-41v/agent.jpg -------------------------------------------------------------------------------- /examples/gui-agent/glm-41v/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/gui-agent/glm-41v/agent.md -------------------------------------------------------------------------------- /examples/gui-agent/glm-41v/agent_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/gui-agent/glm-41v/agent_zh.md -------------------------------------------------------------------------------- /examples/gui-agent/glm-41v/gui_agent_41v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/gui-agent/glm-41v/gui_agent_41v.py -------------------------------------------------------------------------------- /examples/gui-agent/glm-45v/agent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/gui-agent/glm-45v/agent.jpg -------------------------------------------------------------------------------- /examples/gui-agent/glm-45v/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/gui-agent/glm-45v/agent.md -------------------------------------------------------------------------------- /examples/gui-agent/glm-45v/agent_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/gui-agent/glm-45v/agent_zh.md -------------------------------------------------------------------------------- /examples/gui-agent/glm-45v/gui_agent_45v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/gui-agent/glm-45v/gui_agent_45v.py -------------------------------------------------------------------------------- /examples/vlm-helper/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/.editorconfig -------------------------------------------------------------------------------- /examples/vlm-helper/.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | -------------------------------------------------------------------------------- /examples/vlm-helper/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/.prettierignore -------------------------------------------------------------------------------- /examples/vlm-helper/.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/.prettierrc.yaml -------------------------------------------------------------------------------- /examples/vlm-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/README.md -------------------------------------------------------------------------------- /examples/vlm-helper/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/README_zh.md -------------------------------------------------------------------------------- /examples/vlm-helper/build/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/entitlements.mac.plist -------------------------------------------------------------------------------- /examples/vlm-helper/build/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icon.icns -------------------------------------------------------------------------------- /examples/vlm-helper/build/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icon.ico -------------------------------------------------------------------------------- /examples/vlm-helper/build/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icon.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/128x128.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/16x16.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/24x24.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/256x256.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/32x32.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/48x48.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/512x512.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/64x64.png -------------------------------------------------------------------------------- /examples/vlm-helper/build/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/build/icons/96x96.png -------------------------------------------------------------------------------- /examples/vlm-helper/docs/images/floating-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/docs/images/floating-window.png -------------------------------------------------------------------------------- /examples/vlm-helper/docs/images/main-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/docs/images/main-interface.png -------------------------------------------------------------------------------- /examples/vlm-helper/docs/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/docs/images/settings.png -------------------------------------------------------------------------------- /examples/vlm-helper/electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/electron-builder.yml -------------------------------------------------------------------------------- /examples/vlm-helper/electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/electron.vite.config.ts -------------------------------------------------------------------------------- /examples/vlm-helper/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/eslint.config.mjs -------------------------------------------------------------------------------- /examples/vlm-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/package.json -------------------------------------------------------------------------------- /examples/vlm-helper/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/vlm-helper/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/resources/icon.png -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/index.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/modules/apiProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/modules/apiProxy.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/modules/ipcHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/modules/ipcHandlers.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/modules/recordingManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/modules/recordingManager.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/modules/shortcutManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/modules/shortcutManager.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/modules/windowManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/modules/windowManager.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/services/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/services/database.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/types/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/types/window.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/utils/recordingUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/utils/recordingUtils.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/utils/videoCompress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/utils/videoCompress.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/main/utils/windowCreators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/main/utils/windowCreators.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/preload/index.d.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/preload/index.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/index.html -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/App.vue -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/assets/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/assets/app-icon.png -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/assets/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/assets/icons/image.svg -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/assets/icons/pdf3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/assets/icons/pdf3.svg -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/assets/icons/ppt3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/assets/icons/ppt3.svg -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/assets/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/assets/icons/video.svg -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/assets/main.css -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/assets/themes/one-dark-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/assets/themes/one-dark-pro.css -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/components/FloatingChat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/components/FloatingChat.vue -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/components/HistoryPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/components/HistoryPanel.vue -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/components/MarkdownRenderer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/components/MarkdownRenderer.vue -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/components/ThemeProvider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/components/ThemeProvider.vue -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/components/VideoPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/components/VideoPlayer.vue -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/composables/useChatFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/composables/useChatFunctions.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/composables/useFileProcessing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/composables/useFileProcessing.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/composables/useRecording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/composables/useRecording.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/composables/useScreenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/composables/useScreenshot.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/composables/useSettingsInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/composables/useSettingsInit.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/composables/useTextProcessing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/composables/useTextProcessing.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/env.d.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/layouts/AppLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/layouts/AppLayout.vue -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/layouts/components/AppHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/layouts/components/AppHeader.vue -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/main.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/stores/chatStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/stores/chatStore.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/stores/settingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/stores/settingsStore.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/types/index.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/utils/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/utils/errorHandler.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/utils/mediaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/utils/mediaUtils.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/utils/modelAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/utils/modelAPI.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/utils/pdfProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/utils/pdfProcessor.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/utils/pptProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/utils/pptProcessor.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/utils/timeFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/utils/timeFormat.ts -------------------------------------------------------------------------------- /examples/vlm-helper/src/renderer/src/views/ChatView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/src/renderer/src/views/ChatView.vue -------------------------------------------------------------------------------- /examples/vlm-helper/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/tsconfig.json -------------------------------------------------------------------------------- /examples/vlm-helper/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/tsconfig.node.json -------------------------------------------------------------------------------- /examples/vlm-helper/tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/tsconfig.web.json -------------------------------------------------------------------------------- /examples/vlm-helper/uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/examples/vlm-helper/uno.config.ts -------------------------------------------------------------------------------- /glmv_reward/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/.gitignore -------------------------------------------------------------------------------- /glmv_reward/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /glmv_reward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/README.md -------------------------------------------------------------------------------- /glmv_reward/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/README_zh.md -------------------------------------------------------------------------------- /glmv_reward/configs/full_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/configs/full_config.yaml -------------------------------------------------------------------------------- /glmv_reward/examples/configs/example.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/examples/configs/example.yaml.template -------------------------------------------------------------------------------- /glmv_reward/examples/reward_system_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/examples/reward_system_demo.py -------------------------------------------------------------------------------- /glmv_reward/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/pyproject.toml -------------------------------------------------------------------------------- /glmv_reward/resources/WECHAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/resources/WECHAT.md -------------------------------------------------------------------------------- /glmv_reward/resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/resources/logo.svg -------------------------------------------------------------------------------- /glmv_reward/resources/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/resources/wechat.jpg -------------------------------------------------------------------------------- /glmv_reward/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/ruff.toml -------------------------------------------------------------------------------- /glmv_reward/scripts/gui_agent/AndroidWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/scripts/gui_agent/AndroidWorld.py -------------------------------------------------------------------------------- /glmv_reward/scripts/gui_agent/OSWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/scripts/gui_agent/OSWorld.py -------------------------------------------------------------------------------- /glmv_reward/scripts/gui_agent/WebVoyager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/scripts/gui_agent/WebVoyager.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/__init__.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/__init__.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/reward_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/reward_system.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/__init__.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/androidworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/androidworld.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/biology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/biology.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/chart.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/chemistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/chemistry.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/counting.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/file_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/file_based.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/general.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/geography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/geography.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/geoquest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/geoquest.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/language_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/language_mix.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/liberal_arts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/liberal_arts.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/long_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/long_doc.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/math.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/mmsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/mmsi.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/multi_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/multi_image.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/ocr.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/osworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/osworld.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/physics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/physics.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/vqa.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/configs/verifiers/webvoyager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/configs/verifiers/webvoyager.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/reward_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/reward_system.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/utils/image.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/utils/llm.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/utils/logging.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/utils/misc.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/msgspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/utils/msgspec.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/utils/path.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/utils/serialization.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/utils/text.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/__init__.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/_base_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/_base_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/biology_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/biology_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/chart_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/chart_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/chemistry_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/chemistry_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/counting_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/counting_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/general_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/general_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/geography_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/geography_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/geoquest_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/geoquest_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/language_mix_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/language_mix_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/liberal_arts_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/liberal_arts_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/math_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/math_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/mmsi_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/mmsi_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/multi_image_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/multi_image_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/ocr_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/ocr_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/physics_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/physics_verifier.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/verifier_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/verifier_from_file.py -------------------------------------------------------------------------------- /glmv_reward/src/glmv_reward/verifiers/vqa_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/src/glmv_reward/verifiers/vqa_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/chart/test_chart_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/chart/test_chart_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/cogagent/test_android_world_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/cogagent/test_android_world_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/cogagent/test_osworld_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/cogagent/test_osworld_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/cogagent/test_webvoyager_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/cogagent/test_webvoyager_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/conftest.py -------------------------------------------------------------------------------- /glmv_reward/tests/counting/test_counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/counting/test_counting.py -------------------------------------------------------------------------------- /glmv_reward/tests/general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glmv_reward/tests/general/test_counting_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/general/test_counting_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/general/test_general_reward_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/general/test_general_reward_model.py -------------------------------------------------------------------------------- /glmv_reward/tests/general/test_general_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/general/test_general_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/general/test_general_verifier_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/general/test_general_verifier_math.py -------------------------------------------------------------------------------- /glmv_reward/tests/general/test_perception_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/general/test_perception_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/geoquest/test_geoquest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/geoquest/test_geoquest.py -------------------------------------------------------------------------------- /glmv_reward/tests/language_mix/test_language_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/language_mix/test_language_mix.py -------------------------------------------------------------------------------- /glmv_reward/tests/mmsi/test_mmsi_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/mmsi/test_mmsi_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/multi_image/test_multi_image_general_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/multi_image/test_multi_image_general_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/ocr/test_ocr_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/ocr/test_ocr_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/stem/test_chemistry_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/stem/test_chemistry_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/stem/test_logic_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/stem/test_logic_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/stem/test_math_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/stem/test_math_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/stem/test_physics_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/stem/test_physics_verifier.py -------------------------------------------------------------------------------- /glmv_reward/tests/vqa/test_vqa_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/tests/vqa/test_vqa_verifier.py -------------------------------------------------------------------------------- /glmv_reward/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/glmv_reward/uv.lock -------------------------------------------------------------------------------- /inference/html_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/inference/html_detector.py -------------------------------------------------------------------------------- /inference/trans_infer_bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/inference/trans_infer_bench.py -------------------------------------------------------------------------------- /inference/trans_infer_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/inference/trans_infer_cli.py -------------------------------------------------------------------------------- /inference/trans_infer_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/inference/trans_infer_gradio.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/WECHAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/resources/WECHAT.md -------------------------------------------------------------------------------- /resources/bench.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/resources/bench.jpeg -------------------------------------------------------------------------------- /resources/bench_45v.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/resources/bench_45v.jpeg -------------------------------------------------------------------------------- /resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/resources/logo.svg -------------------------------------------------------------------------------- /resources/rl.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/resources/rl.jpeg -------------------------------------------------------------------------------- /resources/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/GLM-V/HEAD/resources/wechat.jpg --------------------------------------------------------------------------------