fix: 修复函数库,非必填引用类型,不传值 执行报错 #1564 #14
Workflow file for this run
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: LLM Code Review | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| llm-code-review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: fit2cloud/LLM-CodeReview-Action@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.FIT2CLOUDRD_LLM_CODE_REVIEW_TOKEN }} | |
| OPENAI_API_KEY: ${{ secrets.ALIYUN_LLM_API_KEY }} | |
| LANGUAGE: Chinese | |
| OPENAI_API_ENDPOINT: https://dashscope.aliyuncs.com/compatible-mode/v1 | |
| MODEL: qwen2-1.5b-instruct | |
| PROMPT: "请检查下面的代码差异是否有不规范、潜在的问题或者优化建议,用中文回答。" | |
| top_p: 1 | |
| temperature: 1 | |
| # max_tokens: 10000 | |
| MAX_PATCH_LENGTH: 10000 | |
| IGNORE_PATTERNS: "/node_modules,*.md,/dist,/.github" | |
| FILE_PATTERNS: "*.java,*.go,*.py,*.vue,*.ts,*.js,*.css,*.scss,*.html" |