Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .continue/agents/new-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Budget-Config
version: 1.0.0
schema: v1

models:
- name: "Qwen3-235B (DeepInfra)"
provider: "openai"
model: "Qwen/Qwen3-235B-A22B-Instruct-2507"
apiBase: "https://api.deepinfra.com/v1/openai"
apiKey: "${env:DEEPINFRA_API_KEY}"
contextLength: 250000
roles:
- chat
- edit

- name: "DeepSeek V4 Flash"
provider: "openai"
model: "deepseek-v4-flash"
apiBase: "https://api.deepseek.com/v1"
apiKey: "${env:DEEPSEEK_API_KEY}"
contextLength: 1000000
roles:
- chat

tabAutocompleteModel:
name: "DeepSeek Flash Auto"
provider: "openai"
model: "deepseek-v4-flash"
apiBase: "https://api.deepseek.com/v1"
apiKey: "${env:DEEPSEEK_API_KEY}"
roles:
- autocomplete

context:
- provider: "file"
- provider: "code"
- provider: "terminal"
- provider: "diff"
22 changes: 22 additions & 0 deletions .github/workflows/pullfrog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Pullfrog AI Agent
on:
pull_request:
types: [opened, synchronize]
issue_comment:
types: [created]

jobs:
pullfrog_run:
runs-on: ubuntu-latest
if: github.event.issue.pull_request || github.event_name == 'pull_request' || contains(github.event.comment.body, '@pullfrog')
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run Pullfrog Agent
uses: pullfrog/pullfrog-action@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENROUTER_API_KEY: ${{ secrets.ORGANIZATION_OPENROUTER_KEY }}
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,14 @@ The Linux kernel is released under the GNU GPL v2.
---

**Note**: This kernel repository contains the complete, production kernel configuration extracted from the stock firmware. While we currently use a prebuilt kernel, this configuration enables future source-based kernel building when MediaTek source code becomes available.
---

## 🤖 Pullfrog AI Review

This repository uses **Pullfrog AI** to automatically review pull requests.

Pullfrog is an AI-powered code review agent that analyzes every PR for code quality,
security issues, performance problems, and best practice violations. Reviews appear
as inline PR comments and checks. Trigger manually by commenting `@pullfrog` on any PR.

Powered by OpenRouter.
Loading