analysis dmp #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: AI Dump Analysis | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| workflow_dispatch: | |
| inputs: | |
| extra-files: | |
| description: 'File URLs to download (one per line)' | |
| required: false | |
| model: | |
| description: 'LLM model name' | |
| required: false | |
| default: 'glm-4-flash' | |
| api-base: | |
| description: 'LLM API base URL' | |
| required: false | |
| default: 'https://open.bigmodel.cn/api/paas/v4' | |
| jobs: | |
| analyze: | |
| runs-on: windows-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./action | |
| with: | |
| api_key: ${{ secrets.AI_API_KEY }} | |
| api_base: ${{ github.event.inputs.api-base || 'https://open.bigmodel.cn/api/paas/v4' }} | |
| model: ${{ github.event.inputs.model || 'glm-4-flash' }} | |
| extra-files: ${{ github.event.inputs.extra-files || '' }} | |
| post-comment: 'true' |