Skip to content

🧹 [Code Health] Remove unused agent imports in search_agent.py #94

🧹 [Code Health] Remove unused agent imports in search_agent.py

🧹 [Code Health] Remove unused agent imports in search_agent.py #94

Workflow file for this run

name: PR Agent
on:
pull_request:
types: [opened, reopened, ready_for_review, synchronize]
issue_comment:
types: [created, edited]
workflow_dispatch:
permissions:
contents: read
issues: write
pull-requests: write
concurrency:
group: pr-agent-${{ github.event.pull_request.number || github.event.issue.number || github.run_id }}
cancel-in-progress: true
jobs:
pr_agent:
if: >-
${{
github.event.sender.type != 'Bot' &&
(
github.event_name != 'issue_comment' ||
github.event.issue.pull_request
)
}}
runs-on: ubuntu-latest
steps:
- name: Run PR Agent
uses: the-pr-agent/pr-agent@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }}
OPENAI__KEY: ${{ secrets.OPENAI_KEY }}
OPENAI__API_BASE: https://api.deepseek.com
config.model: openai/deepseek-v4-pro
config.fallback_models: '["openai/deepseek-v4-pro"]'
config.custom_model_max_tokens: "32000"
github_action_config.auto_describe: "true"
github_action_config.auto_review: "true"
github_action_config.auto_improve: "false"