one-api+此项目openai格式调用v1/images/generations,返回的图片url打不开怎么解决 #138
This file contains 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: CloseIssue | |
on: | |
workflow_dispatch: | |
issues: | |
types: [ opened ] | |
jobs: | |
run-python-script: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: pip install requests | |
- name: Run close_issue.py Script | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: python .github/close_issue.py |