feat(llmx): 添加 OpenAI接口支持 #48

Merged
gewuyou merged 8 commits from dev into test 2025-05-11 21:51:03 +08:00
Showing only changes of commit a33a800e13 - Show all commits

View File

@ -76,13 +76,18 @@ jobs:
uses: ${{env.JCNC_GITEA_URL}}/gradle/actions/setup-gradle@v4
with:
gradle-version: wrapper # 使用项目自带的gradle-wrapper
- name: 📦 Copy Compose File to Internal Server (via native scp)
- name: 🔧 Install sshpass
run: |
apt-get update && apt-get install -y sshpass
- name: 📦 Copy Compose File to Internal Server (with password)
run: |
sshpass -p "${{ secrets.INTERNAL_SERVER_PASSWORD }}" \
scp -P ${{ env.INTERNAL_SERVER_PROT }} -o StrictHostKeyChecking=no \
${{ env.MAIN_COMPOSE_FILE }} \
root@${{ env.INTERNAL_SERVER_HOST }}:/home/luke/deploy/llmx/
- name: 📦 Copy Compose File to Singapore Server (via native scp)
- name: 📦 Copy Compose File to Singapore Server (with password)
run: |
sshpass -p "${{ secrets.SINGAPORE_SERVER_PASSWORD }}" \
scp -P ${{ env.SSH_PROT }} -o StrictHostKeyChecking=no \
${{ env.AGENT_COMPOSE_FILE }} \
root@${{ env.SINGAPORE_SERVER_HOST }}:/home/deploy/llmx/