Refactor LLM verification and update dependencies

- Removed OpenAI and related dependencies from package.json and package-lock.json.
- Simplified LLM verification logic to focus on OpenCode server.
- Updated tests to reflect changes in LLM provider handling.
- Added CI and CD workflows for automated processes in Gitea.
This commit is contained in:
2026-06-25 10:17:08 +00:00
parent 525f6f9350
commit 65f27f544b
11 changed files with 162 additions and 837 deletions
+17
View File
@@ -0,0 +1,17 @@
name: CI
on:
pull_request:
branches-ignore:
- master
types: [opened, synchronize]
permissions:
contents: write
pull-requests: write
issues: write
jobs:
ai-code-review:
name: Code Review
runs-on: ubuntu
steps:
- name: Code Review
uses: https://gitea.jsc.idv.tw/composite-actions/opencode-code-review@${{ vars.ACTION_AI_CODE_REVIEW_VERSION }}