Compare commits
59 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa4664dfa5 | |||
| 4122735bba | |||
| 1cab66b898 | |||
| d5c994708c | |||
| 4c76a5f1d2 | |||
| e8c8ab0d78 | |||
| 9705fb964e | |||
| 29fee0012a | |||
| 33dcf67252 | |||
| ab7e9e9a89 | |||
| d77ac0322d | |||
| 3162ac5b45 | |||
| 2c67f3498b | |||
| 7ee27b4962 | |||
| cad49d5d1f | |||
| 35ff6d44fe | |||
| 9609592be3 | |||
| 08624ec245 | |||
| 8bc2483ab5 | |||
| 68245e8b68 | |||
| f73831036d | |||
| f8af56032a | |||
| 60fe4c4c84 | |||
| 4ce6d9e5c7 | |||
| 9a75ead6ad | |||
| 10276c6e67 | |||
| 5aeb67f6d6 | |||
| 556bc7448a | |||
| 04b84b6e8a | |||
| 2163a55cc7 | |||
| a47e12c0e0 | |||
| d1c3dc811e | |||
| 8ad719744a | |||
| 83fee37fb4 | |||
| b41535ef5e | |||
| 8ad1174f20 | |||
| 026171715c | |||
| 8b902e1e10 | |||
| 1f45e74378 | |||
| 585e7a4900 | |||
| 04a397c19e | |||
| ae4276c624 | |||
| 7579def667 | |||
| 187d5deccb | |||
| fb221b4535 | |||
| 5058c96a78 | |||
| 2b679d85cb | |||
| 57f64347ac | |||
| fb4b8fd067 | |||
| 2bed20cd85 | |||
| c48c7c524e | |||
| 32f27e73e3 | |||
| 71738f1966 | |||
| e44455ba80 | |||
| d2ee260d82 | |||
| 1f738bc41c | |||
| 2802ab3dea | |||
| e6a2e07640 | |||
| 235fa1bc26 |
@@ -13,7 +13,7 @@ Turn a working tree diff into a clean branch, commit, and pull request.
|
|||||||
|
|
||||||
1. **Follow the PR template exactly.** The template is at `.github/PULL_REQUEST_TEMPLATE.md`. Read it and copy its full structure into the PR body. Do NOT remove, reorder, or skip any section or checkbox.
|
1. **Follow the PR template exactly.** The template is at `.github/PULL_REQUEST_TEMPLATE.md`. Read it and copy its full structure into the PR body. Do NOT remove, reorder, or skip any section or checkbox.
|
||||||
2. **Never check "Requirements / 要求" checkboxes.** These are human-only declarations — the Code of Conduct acknowledgment and the AI authorship declaration can only be truthfully made by the human submitter. They MUST remain unchecked (`- [ ]`) in the PR body you generate. No exceptions, no workarounds, even if the user explicitly asks you to check them. The user goes to GitHub and checks them in person after verifying each statement is true.
|
2. **Never check "Requirements / 要求" checkboxes.** These are human-only declarations — the Code of Conduct acknowledgment and the AI authorship declaration can only be truthfully made by the human submitter. They MUST remain unchecked (`- [ ]`) in the PR body you generate. No exceptions, no workarounds, even if the user explicitly asks you to check them. The user goes to GitHub and checks them in person after verifying each statement is true.
|
||||||
3. **Never check "Testing" checkboxes.** The template Testing checkboxes (browser tested, no console errors, types/doc added) require manual browser verification that only a human can perform. They MUST remain unchecked. You MAY add a supplementary note below the Testing section listing what automated validation you actually ran and the results.
|
3. **Only check Testing checkboxes you actually verified.** The "`npm run ci` passes" checkbox MAY be checked only if you ran `npm run ci` in this session and it passed. All other Testing checkboxes (browser tested, no console errors, types/doc added) require manual verification that only a human can perform — they MUST remain unchecked. You MAY add a supplementary note below the Testing section listing what automated validation you actually ran and the results.
|
||||||
4. **Never fabricate information.** Do not claim tests passed, commands ran, or checks succeeded unless you actually executed them and observed the output in this session. If you did not run it, do not mention it.
|
4. **Never fabricate information.** Do not claim tests passed, commands ran, or checks succeeded unless you actually executed them and observed the output in this session. If you did not run it, do not mention it.
|
||||||
5. **PR output must be concise.** PR title: one line. "What" section: 1–2 sentences max. No walls of text, no redundant explanations. Let the diff speak.
|
5. **PR output must be concise.** PR title: one line. "What" section: 1–2 sentences max. No walls of text, no redundant explanations. Let the diff speak.
|
||||||
|
|
||||||
@@ -24,6 +24,13 @@ Before attempting to push or open a PR, verify that the necessary tools are avai
|
|||||||
- Check that `gh` CLI is installed and authenticated (`gh auth status`). If not available, stop and ask the user to install and authenticate GitHub CLI first.
|
- Check that `gh` CLI is installed and authenticated (`gh auth status`). If not available, stop and ask the user to install and authenticate GitHub CLI first.
|
||||||
- If the workflow uses MCP tools for GitHub operations, verify the MCP server is accessible.
|
- If the workflow uses MCP tools for GitHub operations, verify the MCP server is accessible.
|
||||||
|
|
||||||
|
## Shell Permissions
|
||||||
|
|
||||||
|
`gh` reads credentials from the OS keyring. A sandboxed shell cannot reach the keyring and will report a false auth failure.
|
||||||
|
|
||||||
|
- Run every `gh` command (`gh auth status`, `gh pr create`, `gh pr view`, …) and every `git push` / `git fetch` that talks to GitHub with full permissions on the **first** attempt (`required_permissions: ["all"]` for the Shell tool). Do not probe these in the sandbox first.
|
||||||
|
- Local read-only git inspection (`git status`, `git diff`, `git log`, `git branch`) may stay sandboxed.
|
||||||
|
|
||||||
## Procedure
|
## Procedure
|
||||||
|
|
||||||
1. **Read contribution rules.** Read `CONTRIBUTING.md` and any package-level instructions (e.g. `packages/*/AGENTS.md`) relevant to the changed files.
|
1. **Read contribution rules.** Read `CONTRIBUTING.md` and any package-level instructions (e.g. `packages/*/AGENTS.md`) relevant to the changed files.
|
||||||
@@ -34,7 +41,7 @@ Before attempting to push or open a PR, verify that the necessary tools are avai
|
|||||||
- **Commit hygiene**: Every new commit must follow the repo's conventional commit style. Squash or reword if needed.
|
- **Commit hygiene**: Every new commit must follow the repo's conventional commit style. Squash or reword if needed.
|
||||||
- **Author identity**: Verify `git config user.name` and `git config user.email` are set and the email looks real (not empty, not `noreply` unless intentional). Warn the user if not.
|
- **Author identity**: Verify `git config user.name` and `git config user.email` are set and the email looks real (not empty, not `noreply` unless intentional). Warn the user if not.
|
||||||
- **No leftover artifacts**: Check for debug logs, `.only` in tests, conflict markers, or temp files in the diff.
|
- **No leftover artifacts**: Check for debug logs, `.only` in tests, conflict markers, or temp files in the diff.
|
||||||
- **Lint and build**: Run lint/build for the affected area. Record results honestly.
|
- **CI**: Run `npm run ci` and make sure it passes. Record results honestly.
|
||||||
5. **Warn if the PR looks too hasty.** If any of these are true, pause and warn the user before proceeding:
|
5. **Warn if the PR looks too hasty.** If any of these are true, pause and warn the user before proceeding:
|
||||||
- Large diff with no description of intent provided
|
- Large diff with no description of intent provided
|
||||||
- Changes touch core lib or extension (where vibe coding is prohibited per `CONTRIBUTING.md`)
|
- Changes touch core lib or extension (where vibe coding is prohibited per `CONTRIBUTING.md`)
|
||||||
@@ -47,7 +54,7 @@ Before attempting to push or open a PR, verify that the necessary tools are avai
|
|||||||
- If on `main` or a default branch, create a new branch from it with a short kebab-case name: prefix (`fix/`, `feat/`, `docs/`, `refactor/`, `chore/`) + concrete topic words.
|
- If on `main` or a default branch, create a new branch from it with a short kebab-case name: prefix (`fix/`, `feat/`, `docs/`, `refactor/`, `chore/`) + concrete topic words.
|
||||||
7. **Stage and commit.** Stage only the intended files. Use `type(scope): subject` format. Keep the subject specific and compact.
|
7. **Stage and commit.** Stage only the intended files. Use `type(scope): subject` format. Keep the subject specific and compact.
|
||||||
8. **Push.** Push with `-u origin HEAD`.
|
8. **Push.** Push with `-u origin HEAD`.
|
||||||
9. **Open PR.** Use `gh pr create` with the full PR template structure. Fill in "What" and "Type" sections based on the actual diff. Leave all "Testing" and "Requirements" checkboxes unchecked.
|
9. **Open PR.** Use `gh pr create` with the full PR template structure. Fill in "What" and "Type" sections based on the actual diff. Check "`npm run ci` passes" only if it actually passed in this session; leave all other "Testing" and all "Requirements" checkboxes unchecked.
|
||||||
10. **Report results.** Tell the user: branch name, commit hash, PR link, and what validation actually ran (with pass/fail).
|
10. **Report results.** Tell the user: branch name, commit hash, PR link, and what validation actually ran (with pass/fail).
|
||||||
|
|
||||||
## Post-Submission Reminder
|
## Post-Submission Reminder
|
||||||
@@ -75,7 +82,7 @@ After successfully opening the PR, ALWAYS give a brief reminder in the user's la
|
|||||||
## Validation Strategy
|
## Validation Strategy
|
||||||
|
|
||||||
- Default to enough validation to defend the PR, not the absolute minimum.
|
- Default to enough validation to defend the PR, not the absolute minimum.
|
||||||
- Run `npm run ci` to run all build and lint checks.
|
- Always run `npm run ci` (build, lint, typecheck, tests) before opening the PR. It must pass.
|
||||||
- Escalate to broader validation when the diff crosses packages, changes shared code, or affects release behavior.
|
- Escalate to broader validation when the diff crosses packages, changes shared code, or affects release behavior.
|
||||||
- Never claim checks that did not actually run.
|
- Never claim checks that did not actually run.
|
||||||
- You MAY note what you ran and the results below the Testing section in the PR body, but do NOT check the template checkboxes.
|
- You MAY note what you ran and the results below the Testing section in the PR body, but do NOT check the template checkboxes.
|
||||||
@@ -97,6 +104,6 @@ After successfully opening the PR, ALWAYS give a brief reminder in the user's la
|
|||||||
- All commit authors have proper name and email configured.
|
- All commit authors have proper name and email configured.
|
||||||
- The PR title matches the commit intent.
|
- The PR title matches the commit intent.
|
||||||
- The PR body follows the template structure completely.
|
- The PR body follows the template structure completely.
|
||||||
- All "Requirements" and "Testing" checkboxes are unchecked (`- [ ]`) in the PR body. Double-check: if any `- [x]` appears in these sections, it is a violation — fix it before submitting.
|
- All "Requirements" checkboxes and all human-only "Testing" checkboxes are unchecked (`- [ ]`) in the PR body. The only checkbox you may check is "`npm run ci` passes", and only if it truly passed.
|
||||||
- The reported validation is accurate — nothing fabricated.
|
- The reported validation is accurate — nothing fabricated.
|
||||||
- The post-submission reminder was delivered in the user's language, concisely and accurately.
|
- The post-submission reminder was delivered in the user's language, concisely and accurately.
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ Closes #(issue)
|
|||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
|
- [ ] `npm run ci` passes
|
||||||
- [ ] Tested in modern browsers
|
- [ ] Tested in modern browsers
|
||||||
- [ ] No console errors
|
|
||||||
- [ ] Types/doc added
|
- [ ] Types/doc added
|
||||||
|
|
||||||
## Requirements / 要求
|
## Requirements / 要求
|
||||||
|
|||||||
@@ -3,27 +3,21 @@ permissions:
|
|||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
node-version: [24]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Setup Node.js ${{ matrix.node-version }}
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: 24
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Deploy Demo
|
name: Deploy Website
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -6,14 +6,14 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: page-agent-trusted
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pages: write
|
pages: write
|
||||||
id-token: write
|
id-token: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v7
|
||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
@@ -24,7 +24,7 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: Build demo
|
- name: Build website
|
||||||
run: npm run build:website
|
run: npm run build:website
|
||||||
|
|
||||||
- name: Setup Pages
|
- name: Setup Pages
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
# Runs only for code already on main, on the self-hosted runner.
|
||||||
|
# PR-triggered CI must stay on GitHub-hosted runners (see ci.yml).
|
||||||
|
name: Main CI
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: page-agent-trusted
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v7
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v6
|
||||||
|
with:
|
||||||
|
node-version: 24
|
||||||
|
cache: 'npm'
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: CI checks
|
||||||
|
run: node scripts/ci.js
|
||||||
@@ -11,9 +11,11 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
|
# Only the repo owner may trigger a release, even if tag protection is bypassed
|
||||||
|
if: github.actor == 'gaomeng1900'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v7
|
||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v6
|
uses: actions/setup-node@v6
|
||||||
@@ -21,9 +23,9 @@ jobs:
|
|||||||
node-version: 24
|
node-version: 24
|
||||||
registry-url: 'https://registry.npmjs.org'
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
|
||||||
# Ensure npm 11.5.1 or later is installed
|
# Stay on the latest npm 11 release
|
||||||
- name: Update npm
|
- name: Update npm
|
||||||
run: npm install -g npm@latest
|
run: npm install -g npm@11
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|||||||
Vendored
+82
@@ -0,0 +1,82 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2",
|
||||||
|
"language": "en",
|
||||||
|
"globRoot": "..",
|
||||||
|
"ignorePaths": [
|
||||||
|
"**/node_modules/**",
|
||||||
|
"**/dist/**",
|
||||||
|
"**/dist-ssr/**",
|
||||||
|
"**/.output/**",
|
||||||
|
"**/.wxt/**",
|
||||||
|
"**/*.svg"
|
||||||
|
],
|
||||||
|
"words": [
|
||||||
|
"activedescendant",
|
||||||
|
"adex",
|
||||||
|
"agentactivity",
|
||||||
|
"agentic",
|
||||||
|
"akldabonmimlicnjlflnapfeklbfemhj",
|
||||||
|
"aliyun",
|
||||||
|
"Bailian",
|
||||||
|
"Bento",
|
||||||
|
"BYOK",
|
||||||
|
"Chromewebstore",
|
||||||
|
"contenteditable",
|
||||||
|
"deepseek",
|
||||||
|
"executionresult",
|
||||||
|
"fieldsets",
|
||||||
|
"gaomeng",
|
||||||
|
"Googlechrome",
|
||||||
|
"Grabbable",
|
||||||
|
"Gregor",
|
||||||
|
"haspopup",
|
||||||
|
"highspeed",
|
||||||
|
"historicalevent",
|
||||||
|
"historychange",
|
||||||
|
"HITL",
|
||||||
|
"hrefs",
|
||||||
|
"IDBP",
|
||||||
|
"innerhtml",
|
||||||
|
"instructionsconfig",
|
||||||
|
"kimi",
|
||||||
|
"languagedetector",
|
||||||
|
"Lian",
|
||||||
|
"llms",
|
||||||
|
"magicui",
|
||||||
|
"maxlength",
|
||||||
|
"menuitemcheckbox",
|
||||||
|
"menuitemradio",
|
||||||
|
"modelcontextprotocol",
|
||||||
|
"multipageagent",
|
||||||
|
"nesw",
|
||||||
|
"npmmirror",
|
||||||
|
"Ollama",
|
||||||
|
"onwarn",
|
||||||
|
"opensource",
|
||||||
|
"openrouter",
|
||||||
|
"pageagent",
|
||||||
|
"pageagentcore",
|
||||||
|
"pageagentext",
|
||||||
|
"postpublish",
|
||||||
|
"qwen",
|
||||||
|
"reactid",
|
||||||
|
"reactroot",
|
||||||
|
"retryable",
|
||||||
|
"shadcn",
|
||||||
|
"sidepanel",
|
||||||
|
"spinbutton",
|
||||||
|
"staticity",
|
||||||
|
"statuschange",
|
||||||
|
"Supabase",
|
||||||
|
"toggleable",
|
||||||
|
"trivago",
|
||||||
|
"Uncapitalize",
|
||||||
|
"unparseable",
|
||||||
|
"valuenow",
|
||||||
|
"valuetext",
|
||||||
|
"WCAG",
|
||||||
|
"webgl",
|
||||||
|
"wouter",
|
||||||
|
"Zunic"
|
||||||
|
]
|
||||||
|
}
|
||||||
Vendored
-35
@@ -1,42 +1,7 @@
|
|||||||
{
|
{
|
||||||
"cSpell.words": [
|
|
||||||
"agentic",
|
|
||||||
"contenteditable",
|
|
||||||
"deepseek",
|
|
||||||
"historychange",
|
|
||||||
"HITL",
|
|
||||||
"innerhtml",
|
|
||||||
"languagedetector",
|
|
||||||
"llms",
|
|
||||||
"magicui",
|
|
||||||
"npmmirror",
|
|
||||||
"onwarn",
|
|
||||||
"opensource",
|
|
||||||
"qwen",
|
|
||||||
"retryable",
|
|
||||||
"shadcn",
|
|
||||||
"sidepanel",
|
|
||||||
"statuschange",
|
|
||||||
"wouter"
|
|
||||||
],
|
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"packages/*/node_modules": true
|
"packages/*/node_modules": true
|
||||||
},
|
},
|
||||||
"markdownlint.config": {
|
|
||||||
// Relaxed rules
|
|
||||||
"default": true,
|
|
||||||
"whitespace": false,
|
|
||||||
"line_length": false,
|
|
||||||
"ul-indent": false,
|
|
||||||
"no-inline-html": false,
|
|
||||||
"no-bare-urls": false,
|
|
||||||
"fenced-code-language": false,
|
|
||||||
"first-line-h1": false,
|
|
||||||
"block-spacing": false,
|
|
||||||
"blanks-around-lists": false,
|
|
||||||
"ol-prefix": false,
|
|
||||||
"no-duplicate-heading": false
|
|
||||||
},
|
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
"js/ts.tsdk.path": "node_modules/typescript/lib",
|
"js/ts.tsdk.path": "node_modules/typescript/lib",
|
||||||
"typescript.tsdk": "node_modules/typescript/lib",
|
"typescript.tsdk": "node_modules/typescript/lib",
|
||||||
|
|||||||
@@ -132,6 +132,7 @@ const pageInfo = await this.pageController.getPageInfo()
|
|||||||
- **Location**: co-located, `src/foo.test.ts` next to `src/foo.ts`
|
- **Location**: co-located, `src/foo.test.ts` next to `src/foo.ts`
|
||||||
- **Coverage today**: `packages/llms` only — other packages will follow incrementally
|
- **Coverage today**: `packages/llms` only — other packages will follow incrementally
|
||||||
- **Adding tests to a new package**: create `vitest.config.ts` in the package and add a `"test": "vitest run"` script. Root `npm test` and `node scripts/ci.js` pick it up through npm workspaces.
|
- **Adding tests to a new package**: create `vitest.config.ts` in the package and add a `"test": "vitest run"` script. Root `npm test` and `node scripts/ci.js` pick it up through npm workspaces.
|
||||||
|
- **Live tests** (hit real external APIs, slow/costly): name them `*.live.test.ts`, exclude them from the package's `test` script, and expose them via a `test:live` script. Root `npm run test:live` runs all of them; they never run in `npm test` or CI. Template: `packages/llms`.
|
||||||
- **Template**: See @page-agent/llms
|
- **Template**: See @page-agent/llms
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
@@ -1,13 +1,22 @@
|
|||||||
# Page Agent
|
# Page Agent
|
||||||
|
|
||||||
<picture>
|
<picture>
|
||||||
<source media="(prefers-color-scheme: dark)" srcset="https://img.alicdn.com/imgextra/i4/O1CN01qKig1P1FnhpFKNdi6_!!6000000000532-2-tps-1280-256.png">
|
<source media="(prefers-color-scheme: dark)" srcset="https://page-agent.github.io/assets/readme/banner-dark.png">
|
||||||
<img alt="Page Agent Banner" src="https://img.alicdn.com/imgextra/i1/O1CN01NCMKXj1Gn4tkFTsxf_!!6000000000666-2-tps-1280-256.png">
|
<img alt="Page Agent Banner" src="https://page-agent.github.io/assets/readme/banner-light.png">
|
||||||
</picture>
|
</picture>
|
||||||
|
|
||||||
[](https://opensource.org/licenses/MIT) [](http://www.typescriptlang.org/) [](https://bundlephobia.com/package/page-agent) [](https://www.npmjs.com/package/page-agent) [](https://github.com/alibaba/page-agent)
|
[](https://github.com/alibaba/page-agent/actions/workflows/main-ci.yml)
|
||||||
|
[](https://www.npmjs.com/package/page-agent)
|
||||||
|
[](https://www.npmjs.com/package/page-agent)
|
||||||
|
[](https://bundlephobia.com/package/page-agent)
|
||||||
|
[](https://opensource.org/licenses/MIT)
|
||||||
|
[](http://www.typescriptlang.org/)
|
||||||
|
[](https://chromewebstore.google.com/detail/page-agent-ext/akldabonmimlicnjlflnapfeklbfemhj)
|
||||||
|
[](https://github.com/alibaba/page-agent)
|
||||||
|
|
||||||
The GUI Agent Living in Your Webpage. Control web interfaces with natural language.
|
The GUI Agent Living in Your Webpage. One script gives any web page its own AI agent.
|
||||||
|
|
||||||
|
<a href="https://trendshift.io/repositories/22551?utm_source=repository-badge&utm_medium=badge&utm_campaign=badge-repository-22551" target="_blank" rel="noopener noreferrer"><img src="https://trendshift.io/api/badge/repositories/22551" alt="alibaba%2Fpage-agent | Trendshift" width="180"/></a>
|
||||||
|
|
||||||
🌐 **English** | [中文](./docs/README-zh.md)
|
🌐 **English** | [中文](./docs/README-zh.md)
|
||||||
|
|
||||||
@@ -15,7 +24,7 @@ The GUI Agent Living in Your Webpage. Control web interfaces with natural langua
|
|||||||
|
|
||||||
<!-- demo video -->
|
<!-- demo video -->
|
||||||
|
|
||||||
https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2
|
[](https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -27,6 +36,7 @@ https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2
|
|||||||
- **📖 Text-based DOM manipulation**
|
- **📖 Text-based DOM manipulation**
|
||||||
- No screenshots. No multi-modal LLMs or special permissions needed.
|
- No screenshots. No multi-modal LLMs or special permissions needed.
|
||||||
- **🧠 Bring your own LLMs**
|
- **🧠 Bring your own LLMs**
|
||||||
|
- Works with most mainstream models, including locally deployed ones. See [supported models](https://alibaba.github.io/page-agent/docs/features/models).
|
||||||
- **🐙 Optional [chrome extension](https://alibaba.github.io/page-agent/docs/features/chrome-extension) for multi-page tasks.**
|
- **🐙 Optional [chrome extension](https://alibaba.github.io/page-agent/docs/features/chrome-extension) for multi-page tasks.**
|
||||||
- And an [MCP Server (Beta)](https://alibaba.github.io/page-agent/docs/features/mcp-server) to control it from outside
|
- And an [MCP Server (Beta)](https://alibaba.github.io/page-agent/docs/features/mcp-server) to control it from outside
|
||||||
|
|
||||||
@@ -35,7 +45,7 @@ https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2
|
|||||||
- **SaaS AI Copilot** — Ship an AI copilot in your product in lines of code. No backend rewrite.
|
- **SaaS AI Copilot** — Ship an AI copilot in your product in lines of code. No backend rewrite.
|
||||||
- **Smart Form Filling** — Turn 20-click workflows into one sentence. Perfect for ERP, CRM, and admin systems.
|
- **Smart Form Filling** — Turn 20-click workflows into one sentence. Perfect for ERP, CRM, and admin systems.
|
||||||
- **Accessibility** — Make any web app accessible through natural language. Voice commands, screen readers, zero barrier.
|
- **Accessibility** — Make any web app accessible through natural language. Voice commands, screen readers, zero barrier.
|
||||||
- **Multi-page Agent** — Extend your own web agent's reach across browser tabs [chrome extension](https://alibaba.github.io/page-agent/docs/features/chrome-extension).
|
- **Multi-page Agent** — Extend your own web agent's reach across browser tabs via the [Chrome extension](https://alibaba.github.io/page-agent/docs/features/chrome-extension).
|
||||||
- **MCP** - Allow your agent clients to control your browser.
|
- **MCP** - Allow your agent clients to control your browser.
|
||||||
|
|
||||||
## 🚀 Quick Start
|
## 🚀 Quick Start
|
||||||
@@ -45,17 +55,19 @@ https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2
|
|||||||
Fastest way to try PageAgent with our free Demo LLM:
|
Fastest way to try PageAgent with our free Demo LLM:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script src="{URL}" crossorigin="true"></script>
|
<script
|
||||||
|
src="https://cdn.jsdelivr.net/npm/page-agent@1.12.1/dist/iife/page-agent.demo.js"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
> **⚠️ For technical evaluation only.** This demo CDN uses our free [testing LLM API](https://alibaba.github.io/page-agent/docs/features/models#free-testing-api). By using it, you agree to its [terms](https://github.com/alibaba/page-agent/blob/main/docs/terms-and-privacy.md).
|
> **⚠️ For technical evaluation only.** This demo CDN uses our free [testing LLM API](https://alibaba.github.io/page-agent/docs/features/models#free-testing-api). By using it, you agree to its [terms](https://github.com/alibaba/page-agent/blob/main/docs/terms-and-privacy.md).
|
||||||
|
> Add `?autoInit=false` to load the script without creating the demo agent automatically. You can then instantiate it with `new window.PageAgent(...)`.
|
||||||
|
|
||||||
| Mirrors | URL |
|
| Mirrors | URL |
|
||||||
| ------- | ---------------------------------------------------------------------------------- |
|
| ------- | ----------------------------------------------------------------------------------- |
|
||||||
| Global | https://cdn.jsdelivr.net/npm/page-agent@1.10.0/dist/iife/page-agent.demo.js |
|
| Global | https://cdn.jsdelivr.net/npm/page-agent@1.12.1/dist/iife/page-agent.demo.js |
|
||||||
| China | https://registry.npmmirror.com/page-agent/1.10.0/files/dist/iife/page-agent.demo.js |
|
| China | https://registry.npmmirror.com/page-agent/1.12.1/files/dist/iife/page-agent.demo.js |
|
||||||
|
|
||||||
Add `?autoInit=false` to load the script without creating the demo agent automatically. You can then instantiate it with `new window.PageAgent(...)`.
|
|
||||||
|
|
||||||
### NPM Installation
|
### NPM Installation
|
||||||
|
|
||||||
@@ -78,20 +90,12 @@ await agent.execute('Click the login button')
|
|||||||
|
|
||||||
For more programmatic usage, see [📖 Documentations](https://alibaba.github.io/page-agent/docs/introduction/overview).
|
For more programmatic usage, see [📖 Documentations](https://alibaba.github.io/page-agent/docs/introduction/overview).
|
||||||
|
|
||||||
## 🌟 Awesome Page Agent
|
|
||||||
|
|
||||||
Built something cool with PageAgent? Add it here! Open a PR to share your project.
|
|
||||||
|
|
||||||
> These are community projects — not maintained or endorsed by us. Use at your own discretion.
|
|
||||||
|
|
||||||
| Project | Description |
|
|
||||||
| -------- | ----------------------------------------------------------- |
|
|
||||||
| _Yours?_ | [Open a PR](https://github.com/alibaba/page-agent/pulls) 🙌 |
|
|
||||||
|
|
||||||
## 🤝 Contributing
|
## 🤝 Contributing
|
||||||
|
|
||||||
We welcome contributions from the community! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines and [docs/developer-guide.md](docs/developer-guide.md) for local development workflows.
|
We welcome contributions from the community! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines and [docs/developer-guide.md](docs/developer-guide.md) for local development workflows.
|
||||||
|
|
||||||
|
Built something cool with PageAgent? Share it in [Show and Tell](https://github.com/alibaba/page-agent/discussions/categories/show-and-tell). 🙌
|
||||||
|
|
||||||
Please read the [maintainer's note](https://github.com/alibaba/page-agent/issues/349) on principles and current state.
|
Please read the [maintainer's note](https://github.com/alibaba/page-agent/issues/349) on principles and current state.
|
||||||
|
|
||||||
Contributions generated entirely by **bots or AI** without substantial human involvement will **not be accepted**.
|
Contributions generated entirely by **bots or AI** without substantial human involvement will **not be accepted**.
|
||||||
@@ -118,6 +122,4 @@ excellent work on web automation and DOM interaction patterns that helped make
|
|||||||
this project possible.
|
this project possible.
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**⭐ Star this repo if you find PageAgent helpful!**
|
**⭐ Star this repo if you find PageAgent helpful!**
|
||||||
|
|||||||
@@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.12.0] - 2026-07-09
|
||||||
|
|
||||||
|
- **Stateless extension tab sync** - TabsController pulls tab state on demand instead of long-lived ports, so the MV3 service worker stays stateless and survives idle kills without stalling the side panel.
|
||||||
|
- **Tab status in agent context** - Tab summaries now include each tab's loading status for the LLM.
|
||||||
|
|
||||||
|
## [1.11.0] - 2026-07-03
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- **LLM model patching rework** - Rewrote per-model request patching for GPT, Claude, Qwen, Gemini, and DeepSeek, and refreshed the recommended model list.
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
|
||||||
|
- **Deprecate `LLMConfig.temperature`** - Warn when set; use `transformRequestBody` for models that still accept it.
|
||||||
|
- **Extension limitations docs** - Added a limitations section to extension documentation.
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- **Multi-window extension tabs** - Resolved the active tab/window from the caller's window context instead of the global active tab.
|
||||||
|
- **chat-latest model compatibility** - Skip `reasoning_effort` and `temperature` patches for `*-chat-latest` models.
|
||||||
|
- **OpenRouter defaults** - Do not enable reasoning by default on OpenRouter.
|
||||||
|
- **Asset URLs** - Migrated `img.alicdn.com` links to `page-agent.github.io`.
|
||||||
|
|
||||||
## [1.10.0] - 2026-06-15
|
## [1.10.0] - 2026-06-15
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|||||||
+25
-13
@@ -1,21 +1,30 @@
|
|||||||
# Page Agent
|
# Page Agent
|
||||||
|
|
||||||
<picture>
|
<picture>
|
||||||
<source media="(prefers-color-scheme: dark)" srcset="https://img.alicdn.com/imgextra/i4/O1CN01qKig1P1FnhpFKNdi6_!!6000000000532-2-tps-1280-256.png">
|
<source media="(prefers-color-scheme: dark)" srcset="https://page-agent.github.io/assets/readme/banner-dark.png">
|
||||||
<img alt="Page Agent Banner" src="https://img.alicdn.com/imgextra/i1/O1CN01NCMKXj1Gn4tkFTsxf_!!6000000000666-2-tps-1280-256.png">
|
<img alt="Page Agent Banner" src="https://page-agent.github.io/assets/readme/banner-light.png">
|
||||||
</picture>
|
</picture>
|
||||||
|
|
||||||
[](https://opensource.org/licenses/MIT) [](http://www.typescriptlang.org/) [](https://bundlephobia.com/package/page-agent) [](https://www.npmjs.com/package/page-agent) [](https://github.com/alibaba/page-agent)
|
[](https://github.com/alibaba/page-agent/actions/workflows/main-ci.yml)
|
||||||
|
[](https://www.npmjs.com/package/page-agent)
|
||||||
|
[](https://www.npmjs.com/package/page-agent)
|
||||||
|
[](https://bundlephobia.com/package/page-agent)
|
||||||
|
[](https://opensource.org/licenses/MIT)
|
||||||
|
[](http://www.typescriptlang.org/)
|
||||||
|
[](https://chromewebstore.google.com/detail/page-agent-ext/akldabonmimlicnjlflnapfeklbfemhj)
|
||||||
|
[](https://github.com/alibaba/page-agent)
|
||||||
|
|
||||||
纯 JS 实现的 GUI agent。使用自然语言操作你的 Web 应用。无须后端、客户端、浏览器插件。
|
纯 JS 实现的 GUI agent。使用自然语言操作你的 Web 应用。无须后端、客户端、浏览器插件。
|
||||||
|
|
||||||
|
<a href="https://trendshift.io/repositories/22551?utm_source=repository-badge&utm_medium=badge&utm_campaign=badge-repository-22551" target="_blank" rel="noopener noreferrer"><img src="https://trendshift.io/api/badge/repositories/22551" alt="alibaba%2Fpage-agent | Trendshift" width="180"/></a>
|
||||||
|
|
||||||
🌐 [English](../README.md) | **中文**
|
🌐 [English](../README.md) | **中文**
|
||||||
|
|
||||||
<a href="https://alibaba.github.io/page-agent/" target="_blank"><b>🚀 Demo</b></a> | <a href="https://alibaba.github.io/page-agent/docs/introduction/overview" target="_blank"><b>📖 Docs</b></a> | <a href="https://news.ycombinator.com/item?id=47264138" target="_blank"><b>📢 HN Discussion</b></a> | <a href="https://x.com/simonluvramen" target="_blank"><b>𝕏 Follow on X</b></a>
|
<a href="https://alibaba.github.io/page-agent/" target="_blank"><b>🚀 Demo</b></a> | <a href="https://alibaba.github.io/page-agent/docs/introduction/overview" target="_blank"><b>📖 Docs</b></a> | <a href="https://news.ycombinator.com/item?id=47264138" target="_blank"><b>📢 HN Discussion</b></a> | <a href="https://x.com/simonluvramen" target="_blank"><b>𝕏 Follow on X</b></a>
|
||||||
|
|
||||||
<!-- demo video -->
|
<!-- demo video -->
|
||||||
|
|
||||||
https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2
|
[](https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -26,6 +35,7 @@ https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2
|
|||||||
- **📖 基于文本的 DOM 操作**
|
- **📖 基于文本的 DOM 操作**
|
||||||
- 无需截图,无需多模态模型或特殊权限
|
- 无需截图,无需多模态模型或特殊权限
|
||||||
- **🧠 自备 LLM**
|
- **🧠 自备 LLM**
|
||||||
|
- 支持多数主流模型,包括本地部署模型。参见[支持的模型](https://alibaba.github.io/page-agent/docs/features/models)。
|
||||||
- 🐙 可选的 [Chrome 扩展](https://alibaba.github.io/page-agent/docs/features/chrome-extension),支持跨页面任务
|
- 🐙 可选的 [Chrome 扩展](https://alibaba.github.io/page-agent/docs/features/chrome-extension),支持跨页面任务
|
||||||
- [MCP Server (Beta)](https://alibaba.github.io/page-agent/docs/features/mcp-server)
|
- [MCP Server (Beta)](https://alibaba.github.io/page-agent/docs/features/mcp-server)
|
||||||
|
|
||||||
@@ -44,17 +54,19 @@ https://github.com/user-attachments/assets/a1f2eae2-13fb-4aae-98cf-a3fc1620a6c2
|
|||||||
通过我们免费的 Demo LLM 快速体验 PageAgent:
|
通过我们免费的 Demo LLM 快速体验 PageAgent:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script src="{URL}" crossorigin="true"></script>
|
<script
|
||||||
|
src="https://cdn.jsdelivr.net/npm/page-agent@1.12.1/dist/iife/page-agent.demo.js"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
> **⚠️ 仅用于技术评估。** 该 Demo CDN 使用了免费的[测试 LLM API](https://alibaba.github.io/page-agent/docs/features/models#free-testing-api),使用即表示您同意其[条款](https://github.com/alibaba/page-agent/blob/main/docs/terms-and-privacy.md)。
|
> **⚠️ 仅用于技术评估。** 该 Demo CDN 使用了免费的[测试 LLM API](https://alibaba.github.io/page-agent/docs/features/models#free-testing-api),使用即表示您同意其[条款](https://github.com/alibaba/page-agent/blob/main/docs/terms-and-privacy.md)。
|
||||||
|
> 在 URL 后添加 `?autoInit=false` 可只加载脚本,不自动创建 Demo Agent;之后可通过 `new window.PageAgent(...)` 手动初始化。
|
||||||
|
|
||||||
| Mirrors | URL |
|
| Mirrors | URL |
|
||||||
| ------- | ---------------------------------------------------------------------------------- |
|
| ------- | ----------------------------------------------------------------------------------- |
|
||||||
| Global | https://cdn.jsdelivr.net/npm/page-agent@1.10.0/dist/iife/page-agent.demo.js |
|
| Global | https://cdn.jsdelivr.net/npm/page-agent@1.12.1/dist/iife/page-agent.demo.js |
|
||||||
| China | https://registry.npmmirror.com/page-agent/1.10.0/files/dist/iife/page-agent.demo.js |
|
| China | https://registry.npmmirror.com/page-agent/1.12.1/files/dist/iife/page-agent.demo.js |
|
||||||
|
|
||||||
在 URL 后添加 `?autoInit=false` 可只加载脚本,不自动创建 Demo Agent;之后可通过 `new window.PageAgent(...)` 手动初始化。
|
|
||||||
|
|
||||||
### NPM 安装
|
### NPM 安装
|
||||||
|
|
||||||
@@ -85,6 +97,8 @@ await agent.execute('点击登录按钮')
|
|||||||
|
|
||||||
我们不接受未经实质性人类参与、完全由 Bot 或 Agent 自动生成的代码。
|
我们不接受未经实质性人类参与、完全由 Bot 或 Agent 自动生成的代码。
|
||||||
|
|
||||||
|
用 PageAgent 做了有趣的东西?欢迎到 [Show and Tell](https://github.com/alibaba/page-agent/discussions/categories/show-and-tell) 分享。🙌
|
||||||
|
|
||||||
## 👏 声明与致谢
|
## 👏 声明与致谢
|
||||||
|
|
||||||
本项目基于 **[`browser-use`](https://github.com/browser-use/browser-use)** 的优秀工作构建。
|
本项目基于 **[`browser-use`](https://github.com/browser-use/browser-use)** 的优秀工作构建。
|
||||||
@@ -107,6 +121,4 @@ this project possible.
|
|||||||
|
|
||||||
[MIT License](../LICENSE)
|
[MIT License](../LICENSE)
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**⭐ 如果觉得 PageAgent 有用或有趣,请给项目点个星!**
|
**⭐ 如果觉得 PageAgent 有用或有趣,请给项目点个星!**
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ npm run build:ext
|
|||||||
- Add a new bookmark
|
- Add a new bookmark
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
javascript:(function(){var s=document.createElement('script');s.src=`http://localhost:5174/page-agent.demo.js?t=${Math.random()}`;s.onload=()=>console.log(%27PageAgent ready!%27);document.head.appendChild(s);})();
|
javascript:(function(){var s=document.createElement('script');s.src=`http://localhost:5174/page-agent.demo.js?lang=en-US&t=${Math.random()}`;s.onload=()=>console.log(%27PageAgent ready!%27);document.head.appendChild(s);})();
|
||||||
```
|
```
|
||||||
|
|
||||||
- Click the bookmark on any page to load Page-Agent
|
- Click the bookmark on any page to load Page-Agent
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ export default defineConfig([
|
|||||||
'@typescript-eslint/use-unknown-in-catch-callback-variable': 'off',
|
'@typescript-eslint/use-unknown-in-catch-callback-variable': 'off',
|
||||||
'@typescript-eslint/no-unnecessary-type-parameters': 'off',
|
'@typescript-eslint/no-unnecessary-type-parameters': 'off',
|
||||||
'@typescript-eslint/require-await': 'off',
|
'@typescript-eslint/require-await': 'off',
|
||||||
|
'@typescript-eslint/no-deprecated': 'off',
|
||||||
'@eslint-react/dom-no-missing-button-type': 'off',
|
'@eslint-react/dom-no-missing-button-type': 'off',
|
||||||
'@eslint-react/no-nested-component-definitions': 'off',
|
'@eslint-react/no-nested-component-definitions': 'off',
|
||||||
'@eslint-react/no-array-index-key': 'off',
|
'@eslint-react/no-array-index-key': 'off',
|
||||||
|
|||||||
Generated
+1346
-1319
File diff suppressed because it is too large
Load Diff
+22
-23
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "root",
|
"name": "root",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"packages/page-controller",
|
"packages/page-controller",
|
||||||
@@ -37,44 +37,40 @@
|
|||||||
"postpublish": "npm run postpublish --workspaces --if-present",
|
"postpublish": "npm run postpublish --workspaces --if-present",
|
||||||
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json && tsc --noEmit -p packages/extension/tsconfig.json",
|
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json && tsc --noEmit -p packages/extension/tsconfig.json",
|
||||||
"test": "npm test --workspaces --if-present",
|
"test": "npm test --workspaces --if-present",
|
||||||
|
"test:live": "npm run test:live --workspaces --if-present",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"ci": "node scripts/ci.js",
|
"ci": "node scripts/ci.js",
|
||||||
"cleanup": "rm -rf packages/*/dist && rm -rf packages/*/.output",
|
"cleanup": "rm -rf packages/*/dist && rm -rf packages/*/.output",
|
||||||
"prepare": "husky || true"
|
"prepare": "husky || true"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "^21.0.1",
|
"@commitlint/cli": "^21.2.1",
|
||||||
"@commitlint/config-conventional": "^21.0.1",
|
"@commitlint/config-conventional": "^21.2.0",
|
||||||
"@eslint-react/eslint-plugin": "^5.8.16",
|
"@eslint-react/eslint-plugin": "^5.13.2",
|
||||||
"@eslint/js": "^10.0.1",
|
"@eslint/js": "^10.0.1",
|
||||||
"@microsoft/api-extractor": "^7.58.8",
|
"@microsoft/api-extractor": "^7.58.9",
|
||||||
"@tailwindcss/vite": "^4.3.0",
|
"@tailwindcss/vite": "^4.3.2",
|
||||||
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
||||||
"@types/node": "^25.9.2",
|
"@types/node": "^26.1.1",
|
||||||
"@vitejs/plugin-react": "^6.0.2",
|
"@vitejs/plugin-react": "^6.0.3",
|
||||||
"chalk": "^5.6.2",
|
"chalk": "^5.6.2",
|
||||||
"concurrently": "^10.0.3",
|
"concurrently": "^10.0.3",
|
||||||
"dotenv": "^17.4.2",
|
"dotenv": "^17.4.2",
|
||||||
"eslint": "^10.4.0",
|
"eslint": "^10.6.0",
|
||||||
"globals": "^17.6.0",
|
"globals": "^17.7.0",
|
||||||
|
"happy-dom": "^20.10.6",
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7",
|
||||||
"lint-staged": "^17.0.5",
|
"lint-staged": "^17.0.8",
|
||||||
"prettier": "^3.8.3",
|
"prettier": "^3.9.5",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.61.0",
|
"typescript-eslint": "^8.63.0",
|
||||||
"unplugin-dts": "^1.0.1",
|
"unplugin-dts": "^1.0.3",
|
||||||
"vite": "^8.0.14",
|
"vite": "^8.1.4",
|
||||||
"vite-plugin-css-injected-by-js": "^5.0.1",
|
"vite-plugin-css-injected-by-js": "^5.0.1",
|
||||||
"vitest": "^4.1.8"
|
"vitest": "^4.1.10"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3"
|
||||||
"node-notifier": {
|
|
||||||
"uuid": "11.1.1"
|
|
||||||
},
|
|
||||||
"web-ext-run": {
|
|
||||||
"tmp": "0.2.7"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.{js,ts,cjs,cts,mjs,mts}": [
|
"*.{js,ts,cjs,cts,mjs,mts}": [
|
||||||
@@ -87,6 +83,9 @@
|
|||||||
],
|
],
|
||||||
"*.css": [
|
"*.css": [
|
||||||
"npx prettier --write --ignore-unknown"
|
"npx prettier --write --ignore-unknown"
|
||||||
|
],
|
||||||
|
"*.md": [
|
||||||
|
"npx prettier --write --ignore-unknown"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"commitlint": {
|
"commitlint": {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@page-agent/core",
|
"name": "@page-agent/core",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./src/PageAgentCore.ts",
|
"main": "./src/PageAgentCore.ts",
|
||||||
"types": "./src/PageAgentCore.ts",
|
"types": "./src/PageAgentCore.ts",
|
||||||
@@ -55,8 +55,8 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chalk": "^5.6.2",
|
"chalk": "^5.6.2",
|
||||||
"@page-agent/llms": "1.10.0",
|
"@page-agent/llms": "1.12.1",
|
||||||
"@page-agent/page-controller": "1.10.0"
|
"@page-agent/page-controller": "1.12.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"zod": "^3.25.0 || ^4.0.0"
|
"zod": "^3.25.0 || ^4.0.0"
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ and system messages wrapped in <sys> tag.
|
|||||||
<user_request>
|
<user_request>
|
||||||
USER REQUEST: This is your ultimate objective and always remains visible.
|
USER REQUEST: This is your ultimate objective and always remains visible.
|
||||||
- This has the highest priority. Make the user happy.
|
- This has the highest priority. Make the user happy.
|
||||||
- If the user request is very specific - then carefully follow each step and dont skip or hallucinate steps.
|
- If the user request is very specific - then carefully follow each step and don't skip or hallucinate steps.
|
||||||
- If the task is open ended you can plan yourself how to get it done.
|
- If the task is open ended you can plan yourself how to get it done.
|
||||||
</user_request>
|
</user_request>
|
||||||
|
|
||||||
|
|||||||
@@ -255,11 +255,7 @@ export interface AgentErrorEvent {
|
|||||||
* Union type for all history events
|
* Union type for all history events
|
||||||
*/
|
*/
|
||||||
export type HistoricalEvent =
|
export type HistoricalEvent =
|
||||||
| AgentStepEvent
|
AgentStepEvent | ObservationEvent | UserTakeoverEvent | RetryEvent | AgentErrorEvent
|
||||||
| ObservationEvent
|
|
||||||
| UserTakeoverEvent
|
|
||||||
| RetryEvent
|
|
||||||
| AgentErrorEvent
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Agent lifecycle status.
|
* Agent lifecycle status.
|
||||||
|
|||||||
@@ -96,6 +96,10 @@ Returns: `Promise<ExecutionResult>`
|
|||||||
|
|
||||||
Stop the current task.
|
Stop the current task.
|
||||||
|
|
||||||
|
## Limitations
|
||||||
|
|
||||||
|
- **Normal browser windows only.** This extension relies on tab group API which does not work for pop-up window or PWA App window.
|
||||||
|
|
||||||
## Types
|
## Types
|
||||||
|
|
||||||
Install `@page-agent/core` for complete types:
|
Install `@page-agent/core` for complete types:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@page-agent/ext",
|
"name": "@page-agent/ext",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "wxt",
|
"dev": "wxt",
|
||||||
@@ -10,38 +10,38 @@
|
|||||||
"postinstall": "wxt prepare"
|
"postinstall": "wxt prepare"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@radix-ui/react-hover-card": "^1.1.16",
|
"@radix-ui/react-hover-card": "^1.1.19",
|
||||||
"@radix-ui/react-icons": "^1.3.2",
|
"@radix-ui/react-icons": "^1.3.2",
|
||||||
"@radix-ui/react-label": "^2.1.9",
|
"@radix-ui/react-label": "^2.1.11",
|
||||||
"@radix-ui/react-separator": "^1.1.9",
|
"@radix-ui/react-separator": "^1.1.11",
|
||||||
"@radix-ui/react-slot": "^1.2.4",
|
"@radix-ui/react-slot": "^1.3.0",
|
||||||
"@radix-ui/react-switch": "^1.3.0",
|
"@radix-ui/react-switch": "^1.3.3",
|
||||||
"@tailwindcss/vite": "^4.3.0",
|
"@tailwindcss/vite": "^4.3.2",
|
||||||
"@types/chrome": "^0.1.43",
|
"@types/chrome": "^0.2.2",
|
||||||
"@types/react": "^19.2.17",
|
"@types/react": "^19.2.17",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"@wxt-dev/module-react": "^1.2.2",
|
"@wxt-dev/module-react": "^1.2.2",
|
||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"idb": "^8.0.3",
|
"idb": "^8.0.3",
|
||||||
"lucide-react": "^1.16.0",
|
"lucide-react": "^1.24.0",
|
||||||
"motion": "^12.40.0",
|
"motion": "^12.42.2",
|
||||||
"next-themes": "^0.4.6",
|
"next-themes": "^0.4.6",
|
||||||
"react": "^19.2.6",
|
"react": "^19.2.7",
|
||||||
"react-dom": "^19.2.6",
|
"react-dom": "^19.2.7",
|
||||||
"rough-notation": "^0.5.1",
|
"rough-notation": "^0.5.1",
|
||||||
"simple-icons": "^16.23.0",
|
"simple-icons": "^16.25.0",
|
||||||
"sonner": "^2.0.7",
|
"sonner": "^2.0.7",
|
||||||
"tailwind-merge": "^3.6.0",
|
"tailwind-merge": "^3.6.0",
|
||||||
"tailwindcss": "^4.3.0",
|
"tailwindcss": "^4.3.2",
|
||||||
"tw-animate-css": "^1.4.0",
|
"tw-animate-css": "^1.4.0",
|
||||||
"wxt": "^0.20.26"
|
"wxt": "^0.20.27"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@page-agent/core": "1.10.0",
|
"@page-agent/core": "1.12.1",
|
||||||
"@page-agent/llms": "1.10.0",
|
"@page-agent/llms": "1.12.1",
|
||||||
"@page-agent/page-controller": "1.10.0",
|
"@page-agent/page-controller": "1.12.1",
|
||||||
"@page-agent/ui": "1.10.0",
|
"@page-agent/ui": "1.12.1",
|
||||||
"ai-motion": "^0.4.8",
|
"ai-motion": "^0.4.8",
|
||||||
"chalk": "^5.6.2"
|
"chalk": "^5.6.2"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -64,9 +64,11 @@ export class MultiPageAgent extends PageAgentCore {
|
|||||||
},
|
},
|
||||||
|
|
||||||
onBeforeStep: async (agent) => {
|
onBeforeStep: async (agent) => {
|
||||||
|
// pull latest tab state so that tabs changes can be observed
|
||||||
|
await tabsController.syncTabs()
|
||||||
if (!tabsController.currentTabId) return
|
if (!tabsController.currentTabId) return
|
||||||
// make sure the current tab is loaded before the step starts
|
// make sure the current tab is loaded before the step starts
|
||||||
await tabsController.waitUntilTabLoaded(tabsController.currentTabId!)
|
await tabsController.waitUntilTabLoaded(tabsController.currentTabId)
|
||||||
},
|
},
|
||||||
|
|
||||||
onDispose: () => {
|
onDispose: () => {
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
/**
|
/**
|
||||||
* background logics for TabsController
|
* background logics for TabsController
|
||||||
|
*
|
||||||
|
* Keep this stateless: pure request/response handlers only, no in-memory
|
||||||
|
* state, no ports, no event pushing. MV3 SW should be killed and restarted at
|
||||||
|
* any time (idle timeout, extension update) without special handling.
|
||||||
*/
|
*/
|
||||||
import type { TabAction } from './TabsController'
|
import type { TabAction } from './TabsController'
|
||||||
|
|
||||||
@@ -7,6 +11,39 @@ const PREFIX = '[TabsController.background]'
|
|||||||
|
|
||||||
const debug = console.debug.bind(console, `\x1b[90m${PREFIX}\x1b[0m`)
|
const debug = console.debug.bind(console, `\x1b[90m${PREFIX}\x1b[0m`)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolve active tab.
|
||||||
|
*
|
||||||
|
* - `tabs.query({ active: true })` does not work in multi-window scenarios.
|
||||||
|
* - Extension pages (side panel, hub tab) can resolve their own windowId.
|
||||||
|
* We just find the active tab within that window.
|
||||||
|
* - Content scripts (PAGE_AGENT_EXT) can't self-report a windowId.
|
||||||
|
* Chrome populates `sender.tab` for every content-script message,
|
||||||
|
* which is the tab hosting the script.
|
||||||
|
*/
|
||||||
|
async function resolveActiveTab(
|
||||||
|
payload: { windowId?: number } | undefined,
|
||||||
|
sender: chrome.runtime.MessageSender
|
||||||
|
): Promise<chrome.tabs.Tab> {
|
||||||
|
const windowId = payload?.windowId
|
||||||
|
|
||||||
|
if (windowId != null) {
|
||||||
|
debug('get_active_tab: resolving via caller-reported windowId', windowId)
|
||||||
|
const [tab] = await chrome.tabs.query({ active: true, windowId })
|
||||||
|
if (!tab) throw new Error(`No active tab found in window ${windowId}.`)
|
||||||
|
return tab
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sender.tab) {
|
||||||
|
debug('get_active_tab: resolving via sender.tab (content script)', sender.tab.id)
|
||||||
|
return sender.tab
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Error(
|
||||||
|
'Cannot resolve active tab: caller reported no windowId and is not a content script (no sender.tab).'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
export function handleTabControlMessage(
|
export function handleTabControlMessage(
|
||||||
message: { type: 'TAB_CONTROL'; action: TabAction; payload: any },
|
message: { type: 'TAB_CONTROL'; action: TabAction; payload: any },
|
||||||
sender: chrome.runtime.MessageSender,
|
sender: chrome.runtime.MessageSender,
|
||||||
@@ -16,12 +53,11 @@ export function handleTabControlMessage(
|
|||||||
|
|
||||||
switch (action as TabAction) {
|
switch (action as TabAction) {
|
||||||
case 'get_active_tab': {
|
case 'get_active_tab': {
|
||||||
debug('get_active_tab')
|
debug('get_active_tab', payload)
|
||||||
chrome.tabs
|
resolveActiveTab(payload, sender)
|
||||||
.query({ active: true })
|
.then((tab) => {
|
||||||
.then((tabs) => {
|
debug('get_active_tab: success', tab)
|
||||||
debug('get_active_tab: success', tabs)
|
sendResponse({ success: true, tab })
|
||||||
sendResponse({ success: true, tab: tabs[0] })
|
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
sendResponse({ error: error instanceof Error ? error.message : String(error) })
|
sendResponse({ error: error instanceof Error ? error.message : String(error) })
|
||||||
@@ -46,7 +82,7 @@ export function handleTabControlMessage(
|
|||||||
case 'open_new_tab': {
|
case 'open_new_tab': {
|
||||||
debug('open_new_tab', payload)
|
debug('open_new_tab', payload)
|
||||||
chrome.tabs
|
chrome.tabs
|
||||||
.create({ url: payload.url, active: false })
|
.create({ url: payload.url, windowId: payload.windowId, active: false })
|
||||||
.then((newTab) => {
|
.then((newTab) => {
|
||||||
debug('open_new_tab: success', newTab)
|
debug('open_new_tab: success', newTab)
|
||||||
sendResponse({ success: true, tabId: newTab.id })
|
sendResponse({ success: true, tabId: newTab.id })
|
||||||
@@ -112,7 +148,6 @@ export function handleTabControlMessage(
|
|||||||
}
|
}
|
||||||
|
|
||||||
case 'get_window_tabs': {
|
case 'get_window_tabs': {
|
||||||
debug('get_window_tabs', payload)
|
|
||||||
chrome.tabs
|
chrome.tabs
|
||||||
.query({ windowId: payload.windowId })
|
.query({ windowId: payload.windowId })
|
||||||
.then((tabs) => {
|
.then((tabs) => {
|
||||||
@@ -129,41 +164,3 @@ export function handleTabControlMessage(
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const tabEventPorts = new Set<chrome.runtime.Port>()
|
|
||||||
|
|
||||||
function broadcastTabEvent(message: object) {
|
|
||||||
for (const port of tabEventPorts) {
|
|
||||||
port.postMessage(message)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Port-based tab events: agents connect via `chrome.runtime.connect({ name: 'tab-events' })`
|
|
||||||
* and receive tab change events through the port. Works for both extension pages and content scripts.
|
|
||||||
*/
|
|
||||||
export function setupTabEventsPort() {
|
|
||||||
chrome.runtime.onConnect.addListener((port) => {
|
|
||||||
if (port.name !== 'tab-events') return
|
|
||||||
|
|
||||||
debug('port connected', port.sender?.tab?.id ?? port.sender?.url)
|
|
||||||
tabEventPorts.add(port)
|
|
||||||
|
|
||||||
port.onDisconnect.addListener(() => {
|
|
||||||
debug('port disconnected')
|
|
||||||
tabEventPorts.delete(port)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
chrome.tabs.onCreated.addListener((tab) => {
|
|
||||||
broadcastTabEvent({ action: 'created', payload: { tab } })
|
|
||||||
})
|
|
||||||
|
|
||||||
chrome.tabs.onRemoved.addListener((tabId, removeInfo) => {
|
|
||||||
broadcastTabEvent({ action: 'removed', payload: { tabId, removeInfo } })
|
|
||||||
})
|
|
||||||
|
|
||||||
chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
|
|
||||||
broadcastTabEvent({ action: 'updated', payload: { tabId, changeInfo, tab } })
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -15,19 +15,34 @@ function sendMessage(message: {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolve the window hosting this script's own context, when knowable.
|
||||||
|
*
|
||||||
|
* Extension pages (side panel, hub tab) have `chrome.windows` access and can
|
||||||
|
* identify their own window directly via `getCurrent()`.
|
||||||
|
* Content scripts have no `chrome.windows` access; they resolve `undefined`
|
||||||
|
* here and the background script falls back to `sender.tab` instead.
|
||||||
|
*/
|
||||||
|
async function getOwnWindowId(): Promise<number | undefined> {
|
||||||
|
if (typeof chrome.windows === 'undefined') return undefined
|
||||||
|
const win = await chrome.windows.getCurrent()
|
||||||
|
return win.id
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Controller for managing browser tabs.
|
* Controller for managing browser tabs.
|
||||||
* - live in the agent env (extension page or content script)
|
* - live in the agent env (extension page or content script)
|
||||||
* - no chrome apis. call sw for tab operations
|
* - no chrome apis. call sw for tab operations
|
||||||
|
* - store tabs states, pull tabs info and detect changes
|
||||||
*/
|
*/
|
||||||
export class TabsController {
|
export class TabsController {
|
||||||
currentTabId: number | null = null
|
currentTabId: number | null = null
|
||||||
|
|
||||||
private disposed = false
|
private disposed = false
|
||||||
private port?: chrome.runtime.Port
|
|
||||||
private portRetries = 0
|
|
||||||
|
|
||||||
|
/* tracked window */
|
||||||
private windowId: number | null = null
|
private windowId: number | null = null
|
||||||
|
/* tracked tabs */
|
||||||
private tabs: TabMeta[] = []
|
private tabs: TabMeta[] = []
|
||||||
private initialTabId: number | null = null
|
private initialTabId: number | null = null
|
||||||
private tabGroupId: number | null = null
|
private tabGroupId: number | null = null
|
||||||
@@ -43,9 +58,6 @@ export class TabsController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
await this.updateCurrentTabId(null)
|
await this.updateCurrentTabId(null)
|
||||||
this.disposed = false
|
|
||||||
this.port = undefined
|
|
||||||
this.portRetries = 0
|
|
||||||
|
|
||||||
this.windowId = null
|
this.windowId = null
|
||||||
this.tabs = []
|
this.tabs = []
|
||||||
@@ -57,6 +69,7 @@ export class TabsController {
|
|||||||
const activeTabResult = await sendMessage({
|
const activeTabResult = await sendMessage({
|
||||||
type: 'TAB_CONTROL',
|
type: 'TAB_CONTROL',
|
||||||
action: 'get_active_tab',
|
action: 'get_active_tab',
|
||||||
|
payload: { windowId: await getOwnWindowId() },
|
||||||
})
|
})
|
||||||
|
|
||||||
this.initialTabId = activeTabResult.tab?.id
|
this.initialTabId = activeTabResult.tab?.id
|
||||||
@@ -70,8 +83,6 @@ export class TabsController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.connectTabEvents()
|
|
||||||
|
|
||||||
if (experimentalIncludeAllTabs) {
|
if (experimentalIncludeAllTabs) {
|
||||||
const allTabs = await sendMessage({
|
const allTabs = await sendMessage({
|
||||||
type: 'TAB_CONTROL',
|
type: 'TAB_CONTROL',
|
||||||
@@ -124,7 +135,7 @@ export class TabsController {
|
|||||||
const result = await sendMessage({
|
const result = await sendMessage({
|
||||||
type: 'TAB_CONTROL',
|
type: 'TAB_CONTROL',
|
||||||
action: 'open_new_tab',
|
action: 'open_new_tab',
|
||||||
payload: { url },
|
payload: { url, windowId: this.windowId },
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!result.success) {
|
if (!result.success) {
|
||||||
@@ -265,11 +276,14 @@ export class TabsController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async summarizeTabs(): Promise<string> {
|
async summarizeTabs(): Promise<string> {
|
||||||
const summaries = [`| Tab ID | URL | Title | Current |`, `|-----|-----|-----|-----|`]
|
const summaries = [
|
||||||
|
`| Tab ID | URL | Title | Status | Current |`,
|
||||||
|
`|-----|-----|-----|-----|-----|`,
|
||||||
|
]
|
||||||
for (const tab of this.tabs) {
|
for (const tab of this.tabs) {
|
||||||
const { title, url } = await this.getTabInfo(tab.id)
|
const { title, url } = await this.getTabInfo(tab.id)
|
||||||
summaries.push(
|
summaries.push(
|
||||||
`| ${tab.id} | ${url} | ${title} | ${this.currentTabId === tab.id ? '✅' : ''} |`
|
`| ${tab.id} | ${url} | ${title} | ${tab.status ?? '-'} | ${this.currentTabId === tab.id ? '✅' : ''} |`
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if (!this.tabs.length) {
|
if (!this.tabs.length) {
|
||||||
@@ -282,79 +296,96 @@ export class TabsController {
|
|||||||
async waitUntilTabLoaded(tabId: number): Promise<void> {
|
async waitUntilTabLoaded(tabId: number): Promise<void> {
|
||||||
const tab = this.tabs.find((t) => t.id === tabId)
|
const tab = this.tabs.find((t) => t.id === tabId)
|
||||||
if (!tab) throw new Error(`Tab ID ${tabId} not found in tab list.`)
|
if (!tab) throw new Error(`Tab ID ${tabId} not found in tab list.`)
|
||||||
|
|
||||||
if (tab.status === 'unloaded') throw new Error(`Tab ID ${tabId} is unloaded.`)
|
|
||||||
if (tab.status === 'complete') return
|
if (tab.status === 'complete') return
|
||||||
|
|
||||||
|
// When a tracked tab is closed or untracked.
|
||||||
|
// The tab object will be removed from the tab list.
|
||||||
|
// Finding the latest tab object is the only way to know if it's closed.
|
||||||
|
|
||||||
debug('waitUntilTabLoaded', tabId)
|
debug('waitUntilTabLoaded', tabId)
|
||||||
await waitUntil(() => tab.status === 'complete', 4_000)
|
await waitUntil(async () => {
|
||||||
|
await this.syncTabs()
|
||||||
|
const latest = this.tabs.find((t) => t.id === tabId)
|
||||||
|
return !latest || latest.status !== 'loading'
|
||||||
|
}, 4_000)
|
||||||
|
|
||||||
|
const latest = this.tabs.find((t) => t.id === tabId)
|
||||||
|
if (latest?.status === 'unloaded') throw new Error(`Tab ID ${tabId} is unloaded.`)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Connect to background SW via port to receive tab change events.
|
* Pull the window's tabs from the background.
|
||||||
*
|
* Pulling is better than pushing. Long-lived ports are stateful troublemakers.
|
||||||
* @note Port is 1:1 (runtime.connect → background SW has no frames),
|
|
||||||
* so onDisconnect fires exactly once and we can safely reconnect.
|
|
||||||
* Reconnection may miss events during the gap.
|
|
||||||
* TODO: refresh this.tabs from background after reconnect to stay consistent.
|
|
||||||
*/
|
*/
|
||||||
private connectTabEvents() {
|
async syncTabs(): Promise<void> {
|
||||||
this.port = chrome.runtime.connect({ name: 'tab-events' })
|
if (this.disposed || this.windowId == null) return
|
||||||
|
|
||||||
this.port.onMessage.addListener((message: any) => {
|
const result = await sendMessage({
|
||||||
if (this.disposed) return
|
type: 'TAB_CONTROL',
|
||||||
this.portRetries = 0
|
action: 'get_window_tabs',
|
||||||
|
payload: { windowId: this.windowId },
|
||||||
if (message.action === 'created') {
|
|
||||||
const tab = message.payload.tab as chrome.tabs.Tab
|
|
||||||
const shouldTrack = this.experimentalIncludeAllTabs || tab.groupId === this.tabGroupId
|
|
||||||
if (shouldTrack && tab.id != null) {
|
|
||||||
this.addTab({ id: tab.id, isInitial: false })
|
|
||||||
this.switchToTab(tab.id)
|
|
||||||
}
|
|
||||||
} else if (message.action === 'removed') {
|
|
||||||
const { tabId } = message.payload as { tabId: number }
|
|
||||||
const targetTab = this.tabs.find((t) => t.id === tabId)
|
|
||||||
if (targetTab) {
|
|
||||||
this.tabs = this.tabs.filter((t) => t.id !== tabId)
|
|
||||||
if (this.currentTabId === tabId) {
|
|
||||||
const newCurrentTab = this.tabs[this.tabs.length - 1] || null
|
|
||||||
if (newCurrentTab) {
|
|
||||||
this.switchToTab(newCurrentTab.id)
|
|
||||||
} else {
|
|
||||||
this.updateCurrentTabId(null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (message.action === 'updated') {
|
|
||||||
const { tabId, tab } = message.payload as { tabId: number; tab: chrome.tabs.Tab }
|
|
||||||
const targetTab = this.tabs.find((t) => t.id === tabId)
|
|
||||||
if (targetTab) {
|
|
||||||
targetTab.url = tab.url
|
|
||||||
targetTab.title = tab.title
|
|
||||||
targetTab.status = tab.status
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
// sendMessage already logged the failure; keep the stale mirror
|
||||||
|
if (!result?.success) return
|
||||||
|
|
||||||
this.port.onDisconnect.addListener(() => {
|
const liveTabs = (result.tabs as chrome.tabs.Tab[]).filter((t) => t.id != null)
|
||||||
this.port = undefined
|
const liveIds = new Set(liveTabs.map((t) => t.id!))
|
||||||
if (this.disposed) return
|
|
||||||
if (this.portRetries >= 7) {
|
const closedIds = this.tabs.filter((t) => !liveIds.has(t.id)).map((t) => t.id)
|
||||||
console.error(PREFIX, 'tab events port failed after 7 retries, giving up')
|
if (closedIds.length) {
|
||||||
return
|
debug('syncTabs: tabs closed', closedIds)
|
||||||
|
this.tabs = this.tabs.filter((t) => liveIds.has(t.id))
|
||||||
|
}
|
||||||
|
|
||||||
|
const newTabs: TabMeta[] = []
|
||||||
|
for (const live of liveTabs) {
|
||||||
|
const tracked = this.tabs.find((t) => t.id === live.id)
|
||||||
|
if (tracked) {
|
||||||
|
tracked.url = live.url
|
||||||
|
tracked.title = live.title
|
||||||
|
tracked.status = live.status as TabMeta['status']
|
||||||
|
} else if (this.shouldTrack(live)) {
|
||||||
|
debug('syncTabs: new tab', live.id, live.url)
|
||||||
|
const meta: TabMeta = {
|
||||||
|
id: live.id!,
|
||||||
|
isInitial: false,
|
||||||
|
url: live.url,
|
||||||
|
title: live.title,
|
||||||
|
status: live.status,
|
||||||
|
}
|
||||||
|
this.addTab(meta)
|
||||||
|
newTabs.push(meta)
|
||||||
}
|
}
|
||||||
debug('port disconnected, reconnecting...')
|
}
|
||||||
this.portRetries++
|
|
||||||
this.connectTabEvents()
|
// Follow the page like a user would: focus the newest tab it opened.
|
||||||
})
|
// If the current tab is gone, fall back to the last tracked one.
|
||||||
|
if (newTabs.length) {
|
||||||
|
await this.switchToTab(newTabs[newTabs.length - 1].id)
|
||||||
|
} else if (this.currentTabId != null && !this.tabs.find((t) => t.id === this.currentTabId)) {
|
||||||
|
const fallback = this.tabs[this.tabs.length - 1]
|
||||||
|
if (fallback) {
|
||||||
|
await this.switchToTab(fallback.id)
|
||||||
|
} else {
|
||||||
|
debug('syncTabs: no fallback tab found, updating current tab to null')
|
||||||
|
await this.updateCurrentTabId(null)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private shouldTrack(tab: chrome.tabs.Tab): boolean {
|
||||||
|
if (this.tabGroupId != null && tab.groupId === this.tabGroupId) return true
|
||||||
|
return (
|
||||||
|
this.experimentalIncludeAllTabs &&
|
||||||
|
tab.windowId === this.windowId &&
|
||||||
|
!tab.pinned &&
|
||||||
|
isContentScriptAllowed(tab.url)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
dispose() {
|
dispose() {
|
||||||
debug('dispose')
|
debug('dispose')
|
||||||
this.disposed = true
|
this.disposed = true
|
||||||
this.port?.disconnect()
|
|
||||||
this.port = undefined
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -392,29 +423,33 @@ function randomColor(): TabGroupColor {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Wait until condition becomes true
|
* Wait until condition becomes true
|
||||||
* @returns Returns when condition becomes true, throws otherwise
|
* @returns Returns when condition becomes true, false if timeout
|
||||||
* @param timeoutMS Timeout in milliseconds, default 1 minutes, throws error on timeout
|
* @param timeoutMS Timeout in milliseconds, default 1 minutes
|
||||||
* @param error Error object to reject on timeout. If not provided, will resolve with false
|
* @param throwIfTimeout Reject on timeout instead of resolving with `false`
|
||||||
*/
|
*/
|
||||||
export async function waitUntil(
|
async function waitUntil(
|
||||||
check: () => boolean | Promise<boolean>,
|
check: () => boolean | Promise<boolean>,
|
||||||
timeoutMS = 60_000,
|
timeoutMS = 60_000,
|
||||||
error?: string
|
throwIfTimeout = false
|
||||||
): Promise<boolean> {
|
): Promise<boolean> {
|
||||||
if (await check()) return true
|
if (await check()) return true
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const start = Date.now()
|
const start = Date.now()
|
||||||
const poll = async () => {
|
const poll = async () => {
|
||||||
if (await check()) return resolve(true)
|
try {
|
||||||
if (Date.now() - start > timeoutMS) {
|
if (await check()) return resolve(true)
|
||||||
if (error) {
|
if (Date.now() - start > timeoutMS) {
|
||||||
return reject(new Error(error))
|
if (throwIfTimeout) {
|
||||||
} else {
|
return reject(new Error(`waitUntil timed out after ${timeoutMS}ms`))
|
||||||
return resolve(false)
|
} else {
|
||||||
|
return resolve(false)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
setTimeout(poll, 100)
|
||||||
|
} catch (err) {
|
||||||
|
reject(err instanceof Error ? err : new Error(String(err)))
|
||||||
}
|
}
|
||||||
setTimeout(poll, 100)
|
|
||||||
}
|
}
|
||||||
setTimeout(poll, 100)
|
setTimeout(poll, 100)
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ and system messages wrapped in <sys> tag.
|
|||||||
<user_request>
|
<user_request>
|
||||||
USER REQUEST: This is your ultimate objective and always remains visible.
|
USER REQUEST: This is your ultimate objective and always remains visible.
|
||||||
- This has the highest priority. Make the user happy.
|
- This has the highest priority. Make the user happy.
|
||||||
- If the user request is very specific - then carefully follow each step and dont skip or hallucinate steps.
|
- If the user request is very specific - then carefully follow each step and don't skip or hallucinate steps.
|
||||||
- If the task is open ended you can plan yourself how to get it done.
|
- If the task is open ended you can plan yourself how to get it done.
|
||||||
</user_request>
|
</user_request>
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,9 @@
|
|||||||
import { handlePageControlMessage } from '@/agent/RemotePageController.background'
|
import { handlePageControlMessage } from '@/agent/RemotePageController.background'
|
||||||
import { handleTabControlMessage, setupTabEventsPort } from '@/agent/TabsController.background'
|
import { handleTabControlMessage } from '@/agent/TabsController.background'
|
||||||
|
|
||||||
export default defineBackground(() => {
|
export default defineBackground(() => {
|
||||||
console.log('[Background] Service Worker started')
|
console.log('[Background] Service Worker started')
|
||||||
|
|
||||||
// tab change events
|
|
||||||
|
|
||||||
setupTabEventsPort()
|
|
||||||
|
|
||||||
// generate user auth token
|
// generate user auth token
|
||||||
|
|
||||||
chrome.storage.local.get('PageAgentExtUserAuthToken').then((result) => {
|
chrome.storage.local.get('PageAgentExtUserAuthToken').then((result) => {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@page-agent/llms",
|
"name": "@page-agent/llms",
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./src/index.ts",
|
"main": "./src/index.ts",
|
||||||
"types": "./src/index.ts",
|
"types": "./src/index.ts",
|
||||||
@@ -43,7 +43,8 @@
|
|||||||
"homepage": "https://alibaba.github.io/page-agent/",
|
"homepage": "https://alibaba.github.io/page-agent/",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"test": "vitest run",
|
"test": "vitest run --project llms",
|
||||||
|
"test:live": "vitest run --project llms:live",
|
||||||
"prepublishOnly": "node ../../scripts/pre-publish.js",
|
"prepublishOnly": "node ../../scripts/pre-publish.js",
|
||||||
"postpublish": "node ../../scripts/post-publish.js"
|
"postpublish": "node ../../scripts/post-publish.js"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -4,17 +4,24 @@
|
|||||||
import * as z from 'zod/v4'
|
import * as z from 'zod/v4'
|
||||||
|
|
||||||
import { InvokeError, InvokeErrorTypes } from './errors'
|
import { InvokeError, InvokeErrorTypes } from './errors'
|
||||||
import type { InvokeOptions, InvokeResult, LLMClient, LLMConfig, Message, Tool } from './types'
|
import type {
|
||||||
|
InvokeOptions,
|
||||||
|
InvokeResult,
|
||||||
|
LLMClient,
|
||||||
|
Message,
|
||||||
|
ResolvedLLMConfig,
|
||||||
|
Tool,
|
||||||
|
} from './types'
|
||||||
import { modelPatch, zodToOpenAITool } from './utils'
|
import { modelPatch, zodToOpenAITool } from './utils'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Client for OpenAI compatible APIs
|
* Client for OpenAI compatible APIs
|
||||||
*/
|
*/
|
||||||
export class OpenAIClient implements LLMClient {
|
export class OpenAIClient implements LLMClient {
|
||||||
config: Required<LLMConfig>
|
config: ResolvedLLMConfig
|
||||||
private fetch: typeof globalThis.fetch
|
private fetch: typeof globalThis.fetch
|
||||||
|
|
||||||
constructor(config: Required<LLMConfig>) {
|
constructor(config: ResolvedLLMConfig) {
|
||||||
this.config = config
|
this.config = config
|
||||||
this.fetch = config.customFetch
|
this.fetch = config.customFetch
|
||||||
}
|
}
|
||||||
@@ -39,14 +46,18 @@ export class OpenAIClient implements LLMClient {
|
|||||||
|
|
||||||
const requestBody: Record<string, unknown> = {
|
const requestBody: Record<string, unknown> = {
|
||||||
model: this.config.model,
|
model: this.config.model,
|
||||||
temperature: this.config.temperature,
|
|
||||||
messages,
|
messages,
|
||||||
tools: openaiTools,
|
tools: openaiTools,
|
||||||
parallel_tool_calls: false,
|
parallel_tool_calls: false,
|
||||||
tool_choice: toolChoice,
|
tool_choice: toolChoice,
|
||||||
}
|
}
|
||||||
|
// Only sent if the caller explicitly set it. Most new models throw if this is set.
|
||||||
|
if (this.config.temperature !== undefined) {
|
||||||
|
requestBody.temperature = this.config.temperature
|
||||||
|
}
|
||||||
|
|
||||||
|
modelPatch(requestBody, this.config.baseURL)
|
||||||
|
|
||||||
modelPatch(requestBody)
|
|
||||||
let transformedBody: Record<string, unknown> | undefined
|
let transformedBody: Record<string, unknown> | undefined
|
||||||
try {
|
try {
|
||||||
transformedBody = this.config.transformRequestBody(requestBody)
|
transformedBody = this.config.transformRequestBody(requestBody)
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
// Internal constants
|
|
||||||
export const LLM_MAX_RETRIES = 2
|
|
||||||
export const DEFAULT_TEMPERATURE = 0.7 // higher randomness helps auto-recovery
|
|
||||||
+41
-24
@@ -1,34 +1,23 @@
|
|||||||
import { OpenAIClient } from './OpenAIClient'
|
import { OpenAIClient } from './OpenAIClient'
|
||||||
import { DEFAULT_TEMPERATURE, LLM_MAX_RETRIES } from './constants'
|
|
||||||
import { InvokeError, InvokeErrorTypes } from './errors'
|
import { InvokeError, InvokeErrorTypes } from './errors'
|
||||||
import type { InvokeOptions, InvokeResult, LLMClient, LLMConfig, Message, Tool } from './types'
|
import type {
|
||||||
|
InvokeOptions,
|
||||||
|
InvokeResult,
|
||||||
|
LLMClient,
|
||||||
|
LLMConfig,
|
||||||
|
Message,
|
||||||
|
ResolvedLLMConfig,
|
||||||
|
Tool,
|
||||||
|
} from './types'
|
||||||
|
|
||||||
export { InvokeError, InvokeErrorTypes }
|
export { InvokeError, InvokeErrorTypes }
|
||||||
export type { InvokeOptions, InvokeResult, LLMClient, LLMConfig, Message, Tool }
|
export type { InvokeOptions, InvokeResult, LLMClient, LLMConfig, Message, Tool }
|
||||||
|
|
||||||
export function parseLLMConfig(config: LLMConfig): Required<LLMConfig> {
|
/**
|
||||||
// Runtime validation as defensive programming (types already guarantee these)
|
* LLM module
|
||||||
if (!config.baseURL || !config.model) {
|
*/
|
||||||
throw new Error(
|
|
||||||
'[PageAgent] LLM configuration required. Please provide: baseURL, model. ' +
|
|
||||||
'See: https://alibaba.github.io/page-agent/docs/features/models'
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
baseURL: config.baseURL,
|
|
||||||
model: config.model,
|
|
||||||
apiKey: config.apiKey || '',
|
|
||||||
temperature: config.temperature ?? DEFAULT_TEMPERATURE,
|
|
||||||
maxRetries: config.maxRetries ?? LLM_MAX_RETRIES,
|
|
||||||
transformRequestBody: config.transformRequestBody ?? ((requestBody) => requestBody),
|
|
||||||
disableNamedToolChoice: config.disableNamedToolChoice ?? false,
|
|
||||||
customFetch: (config.customFetch ?? fetch).bind(globalThis), // fetch will be illegal unless bound
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export class LLM extends EventTarget {
|
export class LLM extends EventTarget {
|
||||||
config: Required<LLMConfig>
|
config: ResolvedLLMConfig
|
||||||
client: LLMClient
|
client: LLMClient
|
||||||
|
|
||||||
constructor(config: LLMConfig) {
|
constructor(config: LLMConfig) {
|
||||||
@@ -90,3 +79,31 @@ async function withRetry<T>(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function parseLLMConfig(config: LLMConfig): ResolvedLLMConfig {
|
||||||
|
// Runtime validation as defensive programming (types already guarantee these)
|
||||||
|
if (!config.baseURL || !config.model) {
|
||||||
|
throw new Error(
|
||||||
|
'[PageAgent] LLM configuration required. Please provide: baseURL, model. ' +
|
||||||
|
'See: https://alibaba.github.io/page-agent/docs/features/models'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.temperature !== undefined) {
|
||||||
|
console.warn(
|
||||||
|
'[PageAgent] LLMConfig.temperature is deprecated and will be removed in a future version. ' +
|
||||||
|
'Use transformRequestBody to set it only for models you have verified accept it.'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
baseURL: config.baseURL,
|
||||||
|
model: config.model,
|
||||||
|
apiKey: config.apiKey || '',
|
||||||
|
temperature: config.temperature,
|
||||||
|
maxRetries: config.maxRetries ?? 2,
|
||||||
|
transformRequestBody: config.transformRequestBody ?? ((requestBody) => requestBody),
|
||||||
|
disableNamedToolChoice: config.disableNamedToolChoice ?? false,
|
||||||
|
customFetch: (config.customFetch ?? fetch).bind(globalThis), // fetch will be illegal unless bound
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,230 @@
|
|||||||
|
/**
|
||||||
|
* Live compatibility test — hits real provider APIs.
|
||||||
|
*
|
||||||
|
* Purpose: verify request formatting and `modelPatch` (see `utils.ts`) work
|
||||||
|
* for every model below, across the providers that serve them. Not a
|
||||||
|
* correctness/quality eval — the tool call is trivial and forced via
|
||||||
|
* `toolChoiceName`, so a failure here means the request/response shape is
|
||||||
|
* wrong for that model, not that the model is "dumb".
|
||||||
|
*
|
||||||
|
* Tests `OpenAIClient` directly (not the `LLM` retry wrapper), so a failure
|
||||||
|
* always reflects the very first request/response — no retry can mask it.
|
||||||
|
*
|
||||||
|
* Per the `*.live.test.ts` convention this suite is excluded from `npm test`
|
||||||
|
* (slow, costs tokens) — run it manually with `npm run test:live`. Each
|
||||||
|
* provider's tests skip (not fail) when its `TESTING_*_KEY` env var is
|
||||||
|
* absent. Keys live in the repo-root `.env`:
|
||||||
|
*
|
||||||
|
* TESTING_OPENROUTER_KEY=...
|
||||||
|
* TESTING_DEEPSEEK_KEY=...
|
||||||
|
* TESTING_ALIYUN_KEY=...
|
||||||
|
*/
|
||||||
|
import { config as dotenvConfig } from 'dotenv'
|
||||||
|
import { dirname, resolve } from 'path'
|
||||||
|
import { fileURLToPath } from 'url'
|
||||||
|
import { describe, expect, it } from 'vitest'
|
||||||
|
import * as z from 'zod/v4'
|
||||||
|
|
||||||
|
import { OpenAIClient } from './OpenAIClient'
|
||||||
|
import { parseLLMConfig } from './index'
|
||||||
|
import type { Message, Tool } from './types'
|
||||||
|
|
||||||
|
const __dirname = dirname(fileURLToPath(import.meta.url))
|
||||||
|
dotenvConfig({ path: resolve(__dirname, '../../../.env'), quiet: true })
|
||||||
|
|
||||||
|
const TEST_TIMEOUT = 30_000
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mirrors `packages/website/src/pages/docs/features/models/page.tsx`.
|
||||||
|
* This package cannot depend on the website, so the list is duplicated here.
|
||||||
|
* Keep both lists in sync manually when models are added or renamed.
|
||||||
|
*/
|
||||||
|
const MODEL_GROUPS: Record<string, string[]> = {
|
||||||
|
Qwen: [
|
||||||
|
'qwen3.7-max',
|
||||||
|
'qwen3.7-plus',
|
||||||
|
'qwen3.6-max',
|
||||||
|
'qwen3.6-plus',
|
||||||
|
'qwen3.6-flash',
|
||||||
|
'qwen3.5-plus',
|
||||||
|
'qwen3.5-flash',
|
||||||
|
'qwen3-max',
|
||||||
|
],
|
||||||
|
OpenAI: [
|
||||||
|
'gpt-5.6-sol',
|
||||||
|
'gpt-5.6-terra',
|
||||||
|
'gpt-5.6-luna',
|
||||||
|
'gpt-5.5',
|
||||||
|
'gpt-5.4',
|
||||||
|
'gpt-5.4-mini',
|
||||||
|
'gpt-5.4-nano',
|
||||||
|
'gpt-5.2',
|
||||||
|
'gpt-5.1',
|
||||||
|
'gpt-5',
|
||||||
|
'gpt-5-mini',
|
||||||
|
'gpt-4.1',
|
||||||
|
'gpt-4.1-mini',
|
||||||
|
],
|
||||||
|
DeepSeek: ['deepseek-v4-pro', 'deepseek-v4-flash', 'deepseek-3.2'],
|
||||||
|
Google: [
|
||||||
|
'gemini-3.5-flash',
|
||||||
|
'gemini-3.1-pro',
|
||||||
|
'gemini-3.1-flash-lite',
|
||||||
|
'gemini-2.5-pro',
|
||||||
|
'gemini-2.5-flash',
|
||||||
|
],
|
||||||
|
Anthropic: [
|
||||||
|
'claude-sonnet-5',
|
||||||
|
'claude-opus-4-8',
|
||||||
|
'claude-opus-4-7',
|
||||||
|
'claude-opus-4-6',
|
||||||
|
'claude-opus-4-5',
|
||||||
|
'claude-sonnet-4-5',
|
||||||
|
'claude-haiku-4-5',
|
||||||
|
],
|
||||||
|
MiniMax: ['MiniMax-M3', 'MiniMax-M2.7', 'MiniMax-M2.5'],
|
||||||
|
xAI: ['grok-4.5', 'grok-4.3', 'grok-build-0.1'],
|
||||||
|
Tencent: ['hy3'],
|
||||||
|
MoonshotAI: ['kimi-k2.7-code', 'kimi-k2.6', 'kimi-k2.5'],
|
||||||
|
'Z.AI': ['glm-5.2', 'glm-5.1', 'glm-5', 'glm-4.7'],
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* OpenRouter lists every model as `<vendor-slug>/<model-id>`, lowercase.
|
||||||
|
* See the commented-out entries in the repo-root `.env` for real examples,
|
||||||
|
* e.g. `x-ai/grok-4.1-fast`, `qwen/qwen3-coder-next`, `deepseek/deepseek-v3.2-exp`.
|
||||||
|
*/
|
||||||
|
const OPENROUTER_VENDOR_SLUG: Record<string, string> = {
|
||||||
|
Qwen: 'qwen',
|
||||||
|
OpenAI: 'openai',
|
||||||
|
DeepSeek: 'deepseek',
|
||||||
|
Google: 'google',
|
||||||
|
Anthropic: 'anthropic',
|
||||||
|
MiniMax: 'minimax',
|
||||||
|
xAI: 'x-ai',
|
||||||
|
Tencent: 'tencent',
|
||||||
|
MoonshotAI: 'moonshotai',
|
||||||
|
'Z.AI': 'z-ai',
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Overrides for models whose OpenRouter id doesn't match the
|
||||||
|
* `<vendor-slug>/<lowercased-name>` heuristic — dated snapshots, "-preview"
|
||||||
|
* suffixes, "v"-prefixed versions, or dots instead of hyphens in the
|
||||||
|
* version number. Verified against `GET https://openrouter.ai/api/v1/models`
|
||||||
|
* on 2026-07-10; re-check when models are added to `MODEL_GROUPS`.
|
||||||
|
*/
|
||||||
|
const OPENROUTER_ID_OVERRIDES: Record<string, string> = {
|
||||||
|
'qwen3.6-max': 'qwen/qwen3.6-max-preview',
|
||||||
|
'qwen3.5-plus': 'qwen/qwen3.5-plus-20260420',
|
||||||
|
'qwen3.5-flash': 'qwen/qwen3.5-flash-02-23',
|
||||||
|
'deepseek-3.2': 'deepseek/deepseek-v3.2',
|
||||||
|
'gemini-3.1-pro': 'google/gemini-3.1-pro-preview',
|
||||||
|
'claude-opus-4-8': 'anthropic/claude-opus-4.8',
|
||||||
|
'claude-opus-4-7': 'anthropic/claude-opus-4.7',
|
||||||
|
'claude-opus-4-6': 'anthropic/claude-opus-4.6',
|
||||||
|
'claude-opus-4-5': 'anthropic/claude-opus-4.5',
|
||||||
|
'claude-sonnet-4-5': 'anthropic/claude-sonnet-4.5',
|
||||||
|
'claude-haiku-4-5': 'anthropic/claude-haiku-4.5',
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Derive a model's OpenRouter id from its brand (a `MODEL_GROUPS` key) and
|
||||||
|
* native model name.
|
||||||
|
*/
|
||||||
|
function toOpenRouterModelId(brand: string, model: string): string {
|
||||||
|
if (model in OPENROUTER_ID_OVERRIDES) return OPENROUTER_ID_OVERRIDES[model]
|
||||||
|
const slug = OPENROUTER_VENDOR_SLUG[brand]
|
||||||
|
if (!slug) throw new Error(`No OpenRouter vendor slug mapped for brand "${brand}"`)
|
||||||
|
return `${slug}/${model.toLowerCase()}`
|
||||||
|
}
|
||||||
|
|
||||||
|
const PROVIDERS = {
|
||||||
|
openrouter: {
|
||||||
|
baseURL: 'https://openrouter.ai/api/v1',
|
||||||
|
apiKey: process.env.TESTING_OPENROUTER_KEY,
|
||||||
|
},
|
||||||
|
aliyun: {
|
||||||
|
baseURL: 'https://dashscope.aliyuncs.com/compatible-mode/v1',
|
||||||
|
apiKey: process.env.TESTING_ALIYUN_KEY,
|
||||||
|
},
|
||||||
|
deepseek: {
|
||||||
|
baseURL: 'https://api.deepseek.com',
|
||||||
|
apiKey: process.env.TESTING_DEEPSEEK_KEY,
|
||||||
|
},
|
||||||
|
} as const
|
||||||
|
|
||||||
|
const ECHO_TOOL: Tool<{ message: string }, string> = {
|
||||||
|
description: 'Echo back the given message in uppercase.',
|
||||||
|
inputSchema: z.object({ message: z.string() }),
|
||||||
|
execute: async ({ message }) => message.toUpperCase(),
|
||||||
|
}
|
||||||
|
|
||||||
|
const PROMPT: Message[] = [
|
||||||
|
{
|
||||||
|
role: 'user',
|
||||||
|
content: 'Call the "echo" tool with message set to "ping". You must call the tool.',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
async function expectEchoToolCall(baseURL: string, apiKey: string, model: string) {
|
||||||
|
const client = new OpenAIClient(parseLLMConfig({ baseURL, apiKey, model }))
|
||||||
|
const result = await client.invoke(PROMPT, { echo: ECHO_TOOL }, new AbortController().signal, {
|
||||||
|
toolChoiceName: 'echo',
|
||||||
|
})
|
||||||
|
expect(result.toolResult).toBe('PING')
|
||||||
|
}
|
||||||
|
|
||||||
|
describe.concurrent('OpenRouter — all listed models', () => {
|
||||||
|
const { baseURL, apiKey } = PROVIDERS.openrouter
|
||||||
|
|
||||||
|
for (const [brand, models] of Object.entries(MODEL_GROUPS)) {
|
||||||
|
for (const model of models) {
|
||||||
|
const id = toOpenRouterModelId(brand, model)
|
||||||
|
it.skipIf(!apiKey)(
|
||||||
|
id,
|
||||||
|
async () => {
|
||||||
|
await expectEchoToolCall(baseURL, apiKey!, id)
|
||||||
|
},
|
||||||
|
TEST_TIMEOUT
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// Aliyun native ids that don't match the display name in MODEL_GROUPS.
|
||||||
|
const ALIYUN_ID_OVERRIDES: Record<string, string> = {
|
||||||
|
'qwen3.6-max': 'qwen3.6-max-preview',
|
||||||
|
}
|
||||||
|
|
||||||
|
describe.concurrent('Aliyun DashScope — Qwen native', () => {
|
||||||
|
const { baseURL, apiKey } = PROVIDERS.aliyun
|
||||||
|
|
||||||
|
for (const model of MODEL_GROUPS.Qwen) {
|
||||||
|
const id = ALIYUN_ID_OVERRIDES[model] ?? model
|
||||||
|
it.skipIf(!apiKey)(
|
||||||
|
id,
|
||||||
|
async () => {
|
||||||
|
await expectEchoToolCall(baseURL, apiKey!, id)
|
||||||
|
},
|
||||||
|
TEST_TIMEOUT
|
||||||
|
)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
describe.concurrent('DeepSeek — native', () => {
|
||||||
|
const { baseURL, apiKey } = PROVIDERS.deepseek
|
||||||
|
// deepseek-3.2 isn't served on DeepSeek's own API (only via OpenRouter
|
||||||
|
// resellers) — its official API only accepts deepseek-v4-pro/-flash.
|
||||||
|
const nativeModels = MODEL_GROUPS.DeepSeek.filter((model) => model !== 'deepseek-3.2')
|
||||||
|
|
||||||
|
for (const model of nativeModels) {
|
||||||
|
it.skipIf(!apiKey)(
|
||||||
|
model,
|
||||||
|
async () => {
|
||||||
|
await expectEchoToolCall(baseURL, apiKey!, model)
|
||||||
|
},
|
||||||
|
TEST_TIMEOUT
|
||||||
|
)
|
||||||
|
}
|
||||||
|
})
|
||||||
@@ -92,7 +92,12 @@ export interface LLMConfig {
|
|||||||
model: string
|
model: string
|
||||||
apiKey?: string
|
apiKey?: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated No longer a standard parameter; many models reject it outright.
|
||||||
|
* Use `transformRequestBody` to set it only for models you've verified.
|
||||||
|
*/
|
||||||
temperature?: number
|
temperature?: number
|
||||||
|
|
||||||
maxRetries?: number
|
maxRetries?: number
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -118,3 +123,5 @@ export interface LLMConfig {
|
|||||||
*/
|
*/
|
||||||
customFetch?: typeof globalThis.fetch
|
customFetch?: typeof globalThis.fetch
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type ResolvedLLMConfig = Required<Omit<LLMConfig, 'temperature'>> & { temperature?: number }
|
||||||
|
|||||||
+10
-157
@@ -1,162 +1,15 @@
|
|||||||
import { describe, expect, it } from 'vitest'
|
import { describe, expect, it } from 'vitest'
|
||||||
|
|
||||||
import { modelPatch } from './utils'
|
import { modelPatch, normalizeModelName } from './utils'
|
||||||
|
|
||||||
/**
|
describe('normalizeModelName', () => {
|
||||||
* Baseline request body used as starting point for each provider test.
|
it.each([
|
||||||
* Mirrors what OpenAIClient builds before calling modelPatch.
|
['gpt-5.2', 'gpt-52'],
|
||||||
*/
|
['gpt_5_2', 'gpt52'],
|
||||||
function baseBody(model: string) {
|
['GPT-52-2026-01-01', 'gpt-52-2026-01-01'],
|
||||||
return {
|
['openai/gpt-5.2-chat', 'gpt-52-chat'],
|
||||||
model,
|
['claude_sonnet4_5', 'claudesonnet45'],
|
||||||
temperature: 0.7,
|
])('%s -> %s', (input, expected) => {
|
||||||
messages: [],
|
expect(normalizeModelName(input)).toBe(expected)
|
||||||
tools: [],
|
|
||||||
parallel_tool_calls: false,
|
|
||||||
tool_choice: 'required' as unknown,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
describe('modelPatch', () => {
|
|
||||||
it('returns body unchanged when model is missing', () => {
|
|
||||||
const body = { temperature: 0.7 }
|
|
||||||
expect(modelPatch(body)).toBe(body)
|
|
||||||
expect(body).toEqual({ temperature: 0.7 })
|
|
||||||
})
|
|
||||||
|
|
||||||
it('qwen: bumps temperature and disables thinking', () => {
|
|
||||||
const body = baseBody('qwen-max')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body.temperature).toBe(1.0)
|
|
||||||
expect(body).toMatchObject({ enable_thinking: false })
|
|
||||||
})
|
|
||||||
|
|
||||||
it('qwen: keeps higher caller-provided temperature', () => {
|
|
||||||
const body = baseBody('qwen-max')
|
|
||||||
body.temperature = 1.5
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body.temperature).toBe(1.5)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('claude: disables thinking and converts tool_choice "required" -> { type: "any" }', () => {
|
|
||||||
const body = baseBody('claude-3-5-sonnet')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).toMatchObject({
|
|
||||||
thinking: { type: 'disabled' },
|
|
||||||
tool_choice: { type: 'any' },
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('claude: converts named tool_choice to { type: "tool", name }', () => {
|
|
||||||
const body = baseBody('claude-3-5-sonnet')
|
|
||||||
body.tool_choice = { type: 'function', function: { name: 'doStuff' } }
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body.tool_choice).toEqual({ type: 'tool', name: 'doStuff' })
|
|
||||||
})
|
|
||||||
|
|
||||||
it('claude-opus-4-7: drops temperature', () => {
|
|
||||||
const body = baseBody('claude-opus-4-7')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).not.toHaveProperty('temperature')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('claude-opus-47 (alt id form): drops temperature', () => {
|
|
||||||
// Provider sometimes ships ids with the dot stripped; modelPatch normalizes.
|
|
||||||
const body = baseBody('claude-opus-47-20251029')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).not.toHaveProperty('temperature')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('claude-opus-4-8: drops temperature', () => {
|
|
||||||
const body = baseBody('claude-opus-4-8')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).not.toHaveProperty('temperature')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('claude-opus-48 (alt id form): drops temperature', () => {
|
|
||||||
const body = baseBody('claude-opus-48-20251210')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).not.toHaveProperty('temperature')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('grok: removes tool_choice and disables reasoning/thinking', () => {
|
|
||||||
const body = baseBody('grok-4')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).not.toHaveProperty('tool_choice')
|
|
||||||
expect(body).toMatchObject({
|
|
||||||
thinking: { type: 'disabled', effort: 'minimal' },
|
|
||||||
reasoning: { enabled: false, effort: 'low' },
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('gpt-5: sets verbosity=low and reasoning_effort=low', () => {
|
|
||||||
const body = baseBody('gpt-5')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).toMatchObject({ verbosity: 'low', reasoning_effort: 'low' })
|
|
||||||
})
|
|
||||||
|
|
||||||
it('gpt-5-mini: low effort, temperature=1', () => {
|
|
||||||
const body = baseBody('gpt-5-mini')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).toMatchObject({
|
|
||||||
verbosity: 'low',
|
|
||||||
reasoning_effort: 'low',
|
|
||||||
temperature: 1,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('gpt-5.1 (gpt-51): disables reasoning', () => {
|
|
||||||
const body = baseBody('gpt-5.1')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).toMatchObject({ verbosity: 'low', reasoning_effort: 'none' })
|
|
||||||
})
|
|
||||||
|
|
||||||
it('gpt-5.4 (gpt-54): drops reasoning_effort', () => {
|
|
||||||
const body = baseBody('gpt-5.4')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).toMatchObject({ verbosity: 'low' })
|
|
||||||
expect(body).not.toHaveProperty('reasoning_effort')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('gpt-5.5 (gpt-55): drops reasoning_effort and temperature', () => {
|
|
||||||
const body = baseBody('gpt-5.5')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).toMatchObject({ verbosity: 'low' })
|
|
||||||
expect(body).not.toHaveProperty('reasoning_effort')
|
|
||||||
expect(body).not.toHaveProperty('temperature')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('gemini: sets reasoning_effort=minimal', () => {
|
|
||||||
const body = baseBody('gemini-2.5-pro')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).toMatchObject({ reasoning_effort: 'minimal' })
|
|
||||||
})
|
|
||||||
|
|
||||||
it('deepseek: removes tool_choice', () => {
|
|
||||||
const body = baseBody('deepseek-chat')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).not.toHaveProperty('tool_choice')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('minimax: clamps temperature into (0, 1] and removes parallel_tool_calls', () => {
|
|
||||||
const body = baseBody('minimax-m2')
|
|
||||||
body.temperature = 0
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body.temperature).toBeGreaterThan(0)
|
|
||||||
expect(body.temperature).toBeLessThanOrEqual(1)
|
|
||||||
expect(body).not.toHaveProperty('parallel_tool_calls')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('minimax: caps temperature at 1', () => {
|
|
||||||
const body = baseBody('minimax-m2')
|
|
||||||
body.temperature = 2
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body.temperature).toBe(1)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('normalizes provider-prefixed model id (openai/gpt-5)', () => {
|
|
||||||
const body = baseBody('openai/gpt-5')
|
|
||||||
modelPatch(body)
|
|
||||||
expect(body).toMatchObject({ verbosity: 'low', reasoning_effort: 'low' })
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
+145
-67
@@ -24,101 +24,167 @@ export function zodToOpenAITool(name: string, tool: Tool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Patch model specific parameters
|
* Patch model specific parameters. Only patches known models.
|
||||||
* @note in-place modification
|
*
|
||||||
|
* @purpose
|
||||||
|
* - Reconcile the differences in the parameter schema each model accepts.
|
||||||
|
* - Disable thinking/reasoning, or lower it to the minimum where a full disable is impossible.
|
||||||
|
* - Minimize returned tokens.
|
||||||
|
* - Raise temperature for known smaller models to improve auto-recovery odds.
|
||||||
|
* @note Honor temperature if explicitly set by the user
|
||||||
|
*
|
||||||
|
* @todo Need vendor-specific patches.
|
||||||
|
* Local and 3rd-party hosted models may have different schema.
|
||||||
*/
|
*/
|
||||||
export function modelPatch(body: Record<string, any>) {
|
export function modelPatch(body: Record<string, any>, baseURL?: string) {
|
||||||
const model: string = body.model || ''
|
const model: string = body.model || ''
|
||||||
if (!model) return body
|
if (!model) return body
|
||||||
|
|
||||||
|
const provider = getProvider(baseURL)
|
||||||
|
|
||||||
const modelName = normalizeModelName(model)
|
const modelName = normalizeModelName(model)
|
||||||
|
|
||||||
if (modelName.startsWith('qwen')) {
|
if (modelName.startsWith('qwen')) {
|
||||||
debug('Applying Qwen patch: use higher temperature for auto fixing')
|
debug('Patch Qwen: disable thinking')
|
||||||
body.temperature = Math.max(body.temperature || 0, 1.0)
|
|
||||||
body.enable_thinking = false
|
body.enable_thinking = false
|
||||||
|
if (body.temperature === undefined && !/max|plus/.test(modelName)) {
|
||||||
|
debug('Patch Qwen: raise temperature to 1.0')
|
||||||
|
body.temperature = 1.0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (modelName.startsWith('claude')) {
|
if (modelName.startsWith('deepseek')) {
|
||||||
debug('Applying Claude patch: disable thinking')
|
debug('Patch DeepSeek: disable thinking, remove tool_choice')
|
||||||
body.thinking = { type: 'disabled' }
|
body.thinking = { type: 'disabled' }
|
||||||
|
|
||||||
// Convert tool_choice to Claude format
|
|
||||||
if (body.tool_choice === 'required') {
|
|
||||||
// 'required' -> { type: 'any' } (must call some tool)
|
|
||||||
debug('Applying Claude patch: convert tool_choice "required" to { type: "any" }')
|
|
||||||
body.tool_choice = { type: 'any' }
|
|
||||||
} else if (body.tool_choice?.function?.name) {
|
|
||||||
// { type: 'function', function: { name: '...' } } -> { type: 'tool', name: '...' }
|
|
||||||
debug('Applying Claude patch: convert tool_choice format')
|
|
||||||
body.tool_choice = { type: 'tool', name: body.tool_choice.function.name }
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Claude naming pattern has changed
|
|
||||||
// needs proper handling
|
|
||||||
if (
|
|
||||||
modelName.startsWith('claude-opus-4-7') ||
|
|
||||||
modelName.startsWith('claude-opus-47') ||
|
|
||||||
modelName.startsWith('claude-opus-4-8') ||
|
|
||||||
modelName.startsWith('claude-opus-48')
|
|
||||||
) {
|
|
||||||
debug('Applying Claude-4.7/4.8 patch: remove temperature')
|
|
||||||
delete body.temperature
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (modelName.startsWith('grok')) {
|
|
||||||
debug('Applying Grok patch: removing tool_choice')
|
|
||||||
delete body.tool_choice
|
delete body.tool_choice
|
||||||
debug('Applying Grok patch: disable reasoning and thinking')
|
|
||||||
body.thinking = { type: 'disabled', effort: 'minimal' }
|
|
||||||
body.reasoning = { enabled: false, effort: 'low' }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (modelName.startsWith('gpt')) {
|
if (modelName.startsWith('gpt')) {
|
||||||
debug('Applying GPT patch: set verbosity to low')
|
if (modelName.startsWith('gpt-5')) {
|
||||||
body.verbosity = 'low'
|
body.verbosity = 'low'
|
||||||
|
}
|
||||||
|
|
||||||
if (modelName.startsWith('gpt-52')) {
|
// Since gpt-5.4, /chat/completions rejects any explicit reasoning_effort
|
||||||
debug('Applying GPT-52 patch: disable reasoning')
|
// when function tools are present. Newer models are expected to follow.
|
||||||
body.reasoning_effort = 'none'
|
// - gpt-5.1 / gpt-5.2 can fully disable reasoning
|
||||||
} else if (modelName.startsWith('gpt-51')) {
|
// - gpt-5 / -mini / -nano bottom out at "minimal"
|
||||||
debug('Applying GPT-51 patch: disable reasoning')
|
// - everything else (gpt-4.x, chat-latest, gpt-5.4+) must not receive it
|
||||||
body.reasoning_effort = 'none'
|
if (modelName.includes('chat-latest')) {
|
||||||
} else if (modelName.startsWith('gpt-54')) {
|
debug('Patch chat-latest: omit reasoning_effort and temperature')
|
||||||
debug('Applying GPT-5.4 patch: remove reasoning_effort')
|
|
||||||
delete body.reasoning_effort
|
|
||||||
} else if (modelName.startsWith('gpt-55')) {
|
|
||||||
debug('Applying GPT-5.4 patch: remove reasoning_effort and temperature')
|
|
||||||
delete body.reasoning_effort
|
delete body.reasoning_effort
|
||||||
delete body.temperature
|
delete body.temperature
|
||||||
} else if (modelName.startsWith('gpt-5-mini')) {
|
} else if (/^gpt-5[12](-|$)/.test(modelName)) {
|
||||||
debug('Applying GPT-5-mini patch: set reasoning effort to low, temperature to 1')
|
debug('Patch GPT-5.1/5.2: reasoning_effort=none')
|
||||||
body.reasoning_effort = 'low'
|
body.reasoning_effort = 'none'
|
||||||
body.temperature = 1
|
} else if (/^gpt-5(-|$)/.test(modelName)) {
|
||||||
} else if (modelName.startsWith('gpt-5')) {
|
debug('Patch GPT-5: reasoning_effort=minimal')
|
||||||
debug('Applying GPT-5 patch: set reasoning effort to low')
|
body.reasoning_effort = 'minimal'
|
||||||
|
} else {
|
||||||
|
debug('Patch GPT: omit reasoning_effort')
|
||||||
|
delete body.reasoning_effort
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (modelName.startsWith('claude')) {
|
||||||
|
if (/opus|sonnet|haiku/.test(modelName)) {
|
||||||
|
debug('Patch Claude: disable thinking')
|
||||||
|
body.thinking = { type: 'disabled' }
|
||||||
|
|
||||||
|
if (provider !== 'openrouter') {
|
||||||
|
// Convert tool_choice to Claude format
|
||||||
|
if (body.tool_choice === 'required') {
|
||||||
|
// 'required' -> { type: 'any' } (must call some tool)
|
||||||
|
debug('Applying Claude patch: convert tool_choice "required" to { type: "any" }')
|
||||||
|
body.tool_choice = { type: 'any' }
|
||||||
|
} else if (body.tool_choice?.function?.name) {
|
||||||
|
// { type: 'function', function: { name: '...' } } -> { type: 'tool', name: '...' }
|
||||||
|
debug('Applying Claude patch: convert tool_choice format')
|
||||||
|
body.tool_choice = { type: 'tool', name: body.tool_choice.function.name }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
debug('Patch Claude: reasoning_effort=low')
|
||||||
body.reasoning_effort = 'low'
|
body.reasoning_effort = 'low'
|
||||||
|
|
||||||
|
// Fable and mythos can not disable adaptive thinking.
|
||||||
|
// Claude does not support tool_choice with extended thinking.
|
||||||
|
// These 2 concepts are blurred. Basically no tool_choice with thinking.
|
||||||
|
delete body.tool_choice
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (modelName.startsWith('gemini')) {
|
if (modelName.startsWith('gemini')) {
|
||||||
debug('Applying Gemini patch: set reasoning effort to minimal')
|
debug('Patch Gemini: reasoning_effort=low')
|
||||||
body.reasoning_effort = 'minimal'
|
body.reasoning_effort = 'low'
|
||||||
|
if (/^gemini-25(?!.*pro)/.test(modelName)) {
|
||||||
|
debug('Patch Gemini 2.5 non-Pro: reasoning_effort=none')
|
||||||
|
body.reasoning_effort = 'none'
|
||||||
|
} else if (
|
||||||
|
modelName.startsWith('gemini-35-flash') ||
|
||||||
|
modelName.startsWith('gemini-31-flash-lite') ||
|
||||||
|
modelName.startsWith('gemini-3-flash')
|
||||||
|
) {
|
||||||
|
debug('Patch Gemini 3.x Flash/Lite: reasoning_effort=minimal')
|
||||||
|
body.reasoning_effort = 'minimal'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (modelName.startsWith('deepseek')) {
|
if (modelName.startsWith('glm')) {
|
||||||
debug('Applying DeepSeek patch: remove tool_choice')
|
debug('Patch GLM: disable thinking')
|
||||||
delete body.tool_choice
|
body.thinking = { type: 'disabled' }
|
||||||
|
}
|
||||||
|
|
||||||
|
if (modelName.startsWith('hy')) {
|
||||||
|
debug('Patch Hunyuan: disable thinking, reasoning_effort=low')
|
||||||
|
body.thinking = { type: 'disabled' }
|
||||||
|
body.reasoning_effort = 'low'
|
||||||
|
}
|
||||||
|
|
||||||
|
if (modelName.startsWith('grok')) {
|
||||||
|
if (/^grok-4-?3/.test(modelName)) {
|
||||||
|
debug('Patch Grok 4.3: reasoning_effort=none')
|
||||||
|
body.reasoning_effort = 'none'
|
||||||
|
} else if (modelName.startsWith('grok-3-mini') || modelName.startsWith('grok-code-fast')) {
|
||||||
|
debug('Patch Grok mini/code: reasoning_effort=low')
|
||||||
|
body.reasoning_effort = 'low'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (modelName.startsWith('kimi')) {
|
||||||
|
if (!modelName.includes('code')) {
|
||||||
|
// kimi-k2.7-code cannot disable thinking
|
||||||
|
debug('Patch Kimi: disable thinking')
|
||||||
|
body.thinking = { type: 'disabled' }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (modelName.startsWith('minimax')) {
|
if (modelName.startsWith('minimax')) {
|
||||||
debug('Applying MiniMax patch: clamp temperature to (0, 1]')
|
debug('Patch MiniMax: remove parallel_tool_calls')
|
||||||
// MiniMax API rejects temperature = 0; clamp to a small positive value
|
|
||||||
body.temperature = Math.max(body.temperature || 0, 0.01)
|
|
||||||
if (body.temperature > 1) body.temperature = 1
|
|
||||||
// MiniMax does not support parallel_tool_calls
|
|
||||||
delete body.parallel_tool_calls
|
delete body.parallel_tool_calls
|
||||||
|
|
||||||
|
if (modelName.includes('m3')) {
|
||||||
|
// Only M3 can disable thinking
|
||||||
|
debug('Patch MiniMax: disable thinking')
|
||||||
|
body.thinking = { type: 'disabled' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// provider patches
|
||||||
|
|
||||||
|
if (provider === 'openrouter') {
|
||||||
|
// openrouter use reasoning object instead of reasoning_effort
|
||||||
|
|
||||||
|
const reasoningEffort = body.reasoning_effort
|
||||||
|
const reasoningDisabled =
|
||||||
|
body.thinking?.type === 'disabled' ||
|
||||||
|
body.enable_thinking === false ||
|
||||||
|
reasoningEffort === 'none'
|
||||||
|
|
||||||
|
if (reasoningDisabled) {
|
||||||
|
body.reasoning = { enabled: false }
|
||||||
|
} else if (reasoningEffort) {
|
||||||
|
body.reasoning = { enabled: true, effort: reasoningEffort }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return body
|
return body
|
||||||
@@ -139,7 +205,7 @@ export function modelPatch(body: Record<string, any>) {
|
|||||||
* They should be treated as the same model.
|
* They should be treated as the same model.
|
||||||
* Normalize them to `gpt-52`
|
* Normalize them to `gpt-52`
|
||||||
*/
|
*/
|
||||||
function normalizeModelName(modelName: string): string {
|
export function normalizeModelName(modelName: string): string {
|
||||||
let normalizedName = modelName.toLowerCase()
|
let normalizedName = modelName.toLowerCase()
|
||||||
|
|
||||||
// remove prefix before '/'
|
// remove prefix before '/'
|
||||||
@@ -155,3 +221,15 @@ function normalizeModelName(modelName: string): string {
|
|||||||
|
|
||||||
return normalizedName
|
return normalizedName
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getProvider(baseURL?: string): 'openrouter' | undefined {
|
||||||
|
if (!baseURL) return undefined
|
||||||
|
try {
|
||||||
|
const url = new URL(baseURL)
|
||||||
|
const hostname = url.hostname
|
||||||
|
if (hostname === 'openrouter.ai') return 'openrouter'
|
||||||
|
return undefined
|
||||||
|
} catch (e) {
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,10 +1,27 @@
|
|||||||
import { defineConfig } from 'vitest/config'
|
import { configDefaults, defineConfig } from 'vitest/config'
|
||||||
|
|
||||||
|
// Convention: `*.live.test.ts` hits real provider APIs (slow, costs tokens)
|
||||||
|
// and only runs via `npm run test:live`. Everything else runs on `npm test`.
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
test: {
|
test: {
|
||||||
name: 'llms',
|
|
||||||
include: ['src/**/*.test.ts'],
|
|
||||||
// Suppress console output from passing tests; failed tests still get their logs.
|
// Suppress console output from passing tests; failed tests still get their logs.
|
||||||
silent: 'passed-only',
|
silent: 'passed-only',
|
||||||
|
projects: [
|
||||||
|
{
|
||||||
|
test: {
|
||||||
|
name: 'llms',
|
||||||
|
include: ['src/**/*.test.ts'],
|
||||||
|
exclude: [...configDefaults.exclude, 'src/**/*.live.test.ts'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: {
|
||||||
|
name: 'llms:live',
|
||||||
|
include: ['src/**/*.live.test.ts'],
|
||||||
|
// Keep live provider suites under OpenRouter's ~20 req/min free-route cap.
|
||||||
|
maxConcurrency: 2,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@page-agent/mcp",
|
"name": "@page-agent/mcp",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": {
|
"bin": {
|
||||||
"page-agent-mcp": "src/index.js"
|
"page-agent-mcp": "src/index.js"
|
||||||
|
|||||||
@@ -3,10 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<link
|
<link rel="icon" href="https://page-agent.github.io/assets/brand/page-agent-color-64.png" />
|
||||||
rel="icon"
|
|
||||||
href="https://img.alicdn.com/imgextra/i1/O1CN01mRGret1QrKiu7CFJI_!!6000000002029-2-tps-64-64.png"
|
|
||||||
/>
|
|
||||||
<title>Page Agent MCP Launcher</title>
|
<title>Page Agent MCP Launcher</title>
|
||||||
<style>
|
<style>
|
||||||
* {
|
* {
|
||||||
@@ -145,7 +142,7 @@
|
|||||||
<div class="card">
|
<div class="card">
|
||||||
<img
|
<img
|
||||||
class="logo"
|
class="logo"
|
||||||
src="https://img.alicdn.com/imgextra/i3/O1CN01JPT4Fj1FJTfmHfNxO_!!6000000000466-49-tps-512-512.webp"
|
src="https://page-agent.github.io/assets/brand/page-agent-color-512.webp"
|
||||||
alt="Page Agent"
|
alt="Page Agent"
|
||||||
/>
|
/>
|
||||||
<div class="badge">Page Agent MCP Launcher</div>
|
<div class="badge">Page Agent MCP Launcher</div>
|
||||||
@@ -164,7 +161,7 @@
|
|||||||
|
|
||||||
<a class="store-btn" href="__STORE_URL__" target="_blank">
|
<a class="store-btn" href="__STORE_URL__" target="_blank">
|
||||||
<img
|
<img
|
||||||
src="https://img.alicdn.com/imgextra/i3/O1CN01JpW0Vo1sR3FpiZKFM_!!6000000005762-55-tps-192-192.svg"
|
src="https://page-agent.github.io/assets/third-party/chrome-web-store-192.svg"
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
<span data-i18n="install_btn">Install from Chrome Web Store</span>
|
<span data-i18n="install_btn">Install from Chrome Web Store</span>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "page-agent",
|
"name": "page-agent",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./src/PageAgent.ts",
|
"main": "./src/PageAgent.ts",
|
||||||
"types": "./src/PageAgent.ts",
|
"types": "./src/PageAgent.ts",
|
||||||
@@ -54,10 +54,10 @@
|
|||||||
"postpublish": "node ../../scripts/post-publish.js"
|
"postpublish": "node ../../scripts/post-publish.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@page-agent/core": "1.10.0",
|
"@page-agent/core": "1.12.1",
|
||||||
"@page-agent/llms": "1.10.0",
|
"@page-agent/llms": "1.12.1",
|
||||||
"@page-agent/page-controller": "1.10.0",
|
"@page-agent/page-controller": "1.12.1",
|
||||||
"@page-agent/ui": "1.10.0",
|
"@page-agent/ui": "1.12.1",
|
||||||
"chalk": "^5.6.2"
|
"chalk": "^5.6.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@page-agent/page-controller",
|
"name": "@page-agent/page-controller",
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./src/PageController.ts",
|
"main": "./src/PageController.ts",
|
||||||
"types": "./src/PageController.ts",
|
"types": "./src/PageController.ts",
|
||||||
@@ -48,8 +48,5 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ai-motion": "^0.4.8"
|
"ai-motion": "^0.4.8"
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"happy-dom": "^20.10.2"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -208,9 +208,7 @@ export async function inputTextElement(element: HTMLElement, text: string) {
|
|||||||
selection?.removeAllRanges()
|
selection?.removeAllRanges()
|
||||||
selection?.addRange(range)
|
selection?.addRange(range)
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
||||||
doc.execCommand('delete', false)
|
doc.execCommand('delete', false)
|
||||||
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
||||||
doc.execCommand('insertText', false, text)
|
doc.execCommand('insertText', false, text)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -598,14 +598,12 @@ export default (
|
|||||||
isAnyRectVisible = true
|
isAnyRectVisible = true
|
||||||
|
|
||||||
// Viewport check for this rect
|
// Viewport check for this rect
|
||||||
if (
|
if (!(
|
||||||
!(
|
rect.bottom < -viewportExpansion ||
|
||||||
rect.bottom < -viewportExpansion ||
|
rect.top > window.innerHeight + viewportExpansion ||
|
||||||
rect.top > window.innerHeight + viewportExpansion ||
|
rect.right < -viewportExpansion ||
|
||||||
rect.right < -viewportExpansion ||
|
rect.left > window.innerWidth + viewportExpansion
|
||||||
rect.left > window.innerWidth + viewportExpansion
|
)) {
|
||||||
)
|
|
||||||
) {
|
|
||||||
isAnyRectInViewport = true
|
isAnyRectInViewport = true
|
||||||
break // Found a visible rect in viewport, no need to check others
|
break // Found a visible rect in viewport, no need to check others
|
||||||
}
|
}
|
||||||
@@ -985,12 +983,10 @@ export default (
|
|||||||
rect.height > 0 &&
|
rect.height > 0 &&
|
||||||
!(
|
!(
|
||||||
// Only check non-empty rects
|
// Only check non-empty rects
|
||||||
(
|
rect.bottom < -viewportExpansion ||
|
||||||
rect.bottom < -viewportExpansion ||
|
rect.top > window.innerHeight + viewportExpansion ||
|
||||||
rect.top > window.innerHeight + viewportExpansion ||
|
rect.right < -viewportExpansion ||
|
||||||
rect.right < -viewportExpansion ||
|
rect.left > window.innerWidth + viewportExpansion
|
||||||
rect.left > window.innerWidth + viewportExpansion
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
isAnyRectInViewport = true
|
isAnyRectInViewport = true
|
||||||
@@ -1103,14 +1099,12 @@ export default (
|
|||||||
for (const rect of rects) {
|
for (const rect of rects) {
|
||||||
if (rect.width === 0 || rect.height === 0) continue // Skip empty rects
|
if (rect.width === 0 || rect.height === 0) continue // Skip empty rects
|
||||||
|
|
||||||
if (
|
if (!(
|
||||||
!(
|
rect.bottom < -viewportExpansion ||
|
||||||
rect.bottom < -viewportExpansion ||
|
rect.top > window.innerHeight + viewportExpansion ||
|
||||||
rect.top > window.innerHeight + viewportExpansion ||
|
rect.right < -viewportExpansion ||
|
||||||
rect.right < -viewportExpansion ||
|
rect.left > window.innerWidth + viewportExpansion
|
||||||
rect.left > window.innerWidth + viewportExpansion
|
)) {
|
||||||
)
|
|
||||||
) {
|
|
||||||
return true // Found at least one rect in the viewport
|
return true // Found at least one rect in the viewport
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@page-agent/ui",
|
"name": "@page-agent/ui",
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./src/index.ts",
|
"main": "./src/index.ts",
|
||||||
"types": "./src/index.ts",
|
"types": "./src/index.ts",
|
||||||
|
|||||||
@@ -1,64 +0,0 @@
|
|||||||
import styles from './motion.module.css'
|
|
||||||
|
|
||||||
export function createMotion() {
|
|
||||||
const wrapper = document.createElement('div')
|
|
||||||
wrapper.className = styles.wrapper
|
|
||||||
|
|
||||||
{
|
|
||||||
const colorWrapper = document.createElement('div')
|
|
||||||
colorWrapper.className = styles.colorWrapper
|
|
||||||
wrapper.appendChild(colorWrapper)
|
|
||||||
|
|
||||||
const layerA = document.createElement('div')
|
|
||||||
layerA.className = styles.colorLayer + ' ' + styles.layerA
|
|
||||||
colorWrapper.appendChild(layerA)
|
|
||||||
|
|
||||||
const layerB = document.createElement('div')
|
|
||||||
layerB.className = styles.colorLayer + ' ' + styles.layerB
|
|
||||||
colorWrapper.appendChild(layerB)
|
|
||||||
|
|
||||||
const layerC = document.createElement('div')
|
|
||||||
layerC.className = styles.colorLayer + ' ' + styles.layerC
|
|
||||||
colorWrapper.appendChild(layerC)
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
const borderWrapper = document.createElement('div')
|
|
||||||
borderWrapper.className = styles.borderWrapper
|
|
||||||
wrapper.appendChild(borderWrapper)
|
|
||||||
|
|
||||||
const layerA = document.createElement('div')
|
|
||||||
layerA.className = styles.borderLayer + ' ' + styles.layerA
|
|
||||||
borderWrapper.appendChild(layerA)
|
|
||||||
|
|
||||||
const layerB = document.createElement('div')
|
|
||||||
layerB.className = styles.borderLayer + ' ' + styles.layerB
|
|
||||||
borderWrapper.appendChild(layerB)
|
|
||||||
|
|
||||||
const layerC = document.createElement('div')
|
|
||||||
layerC.className = styles.borderLayer + ' ' + styles.layerC
|
|
||||||
borderWrapper.appendChild(layerC)
|
|
||||||
}
|
|
||||||
|
|
||||||
function show() {
|
|
||||||
wrapper.classList.remove(styles.exit)
|
|
||||||
wrapper.classList.remove(styles.entry)
|
|
||||||
// Force reflow to restart animation
|
|
||||||
void wrapper.offsetHeight
|
|
||||||
wrapper.classList.add(styles.entry)
|
|
||||||
}
|
|
||||||
|
|
||||||
function hide() {
|
|
||||||
wrapper.classList.remove(styles.entry)
|
|
||||||
wrapper.classList.remove(styles.exit)
|
|
||||||
// Force reflow to restart animation
|
|
||||||
void wrapper.offsetHeight
|
|
||||||
wrapper.classList.add(styles.exit)
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
element: wrapper,
|
|
||||||
show,
|
|
||||||
hide,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,397 +0,0 @@
|
|||||||
.wrapper {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
pointer-events: none;
|
|
||||||
|
|
||||||
transform-origin: center;
|
|
||||||
|
|
||||||
--color-1: rgb(57, 182, 255);
|
|
||||||
--color-2: rgb(189, 69, 251);
|
|
||||||
--color-3: rgb(255, 87, 51);
|
|
||||||
--color-4: rgb(255, 214, 0);
|
|
||||||
|
|
||||||
--blend-mode: screen;
|
|
||||||
}
|
|
||||||
|
|
||||||
.colorLayer {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
/* 变亮混合模式 */
|
|
||||||
/* mix-blend-mode: screen; */
|
|
||||||
/* mix-blend-mode: overlay; */
|
|
||||||
/* mix-blend-mode: multiply; */
|
|
||||||
mix-blend-mode: add;
|
|
||||||
|
|
||||||
/* 边框遮罩 - 中间透明,边缘不透明 */
|
|
||||||
mask-image: url(https://img.alicdn.com/imgextra/i2/O1CN01iW1wfX1C0ICvoPbTq_!!6000000000018-2-tps-512-512.png);
|
|
||||||
mask-repeat: no-repeat;
|
|
||||||
mask-size: calc(100% + 10px) calc(100% + 10px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.borderWrapper {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
/* filter: blur(10px); */
|
|
||||||
}
|
|
||||||
|
|
||||||
.borderLayer {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
/* 变亮混合模式 */
|
|
||||||
/* mix-blend-mode: overlay; */
|
|
||||||
mix-blend-mode: add;
|
|
||||||
|
|
||||||
mask-image:
|
|
||||||
linear-gradient(
|
|
||||||
to right,
|
|
||||||
black 0px,
|
|
||||||
black 2px,
|
|
||||||
transparent 2px,
|
|
||||||
transparent calc(100% - 2px),
|
|
||||||
black calc(100% - 2px),
|
|
||||||
black 100%
|
|
||||||
),
|
|
||||||
linear-gradient(
|
|
||||||
to top,
|
|
||||||
black 0px,
|
|
||||||
black 2px,
|
|
||||||
transparent 2px,
|
|
||||||
transparent calc(100% - 2px),
|
|
||||||
black calc(100% - 2px),
|
|
||||||
black 100%
|
|
||||||
);
|
|
||||||
|
|
||||||
mask-composite: add;
|
|
||||||
mask-repeat: no-repeat;
|
|
||||||
mask-size: 100% 100%;
|
|
||||||
|
|
||||||
/* filter: blur(100px); */
|
|
||||||
}
|
|
||||||
|
|
||||||
.blueLayer {
|
|
||||||
&.colorLayer {
|
|
||||||
mask-position: left -5px top -5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
/* inset: 0; */
|
|
||||||
width: calc(max(100vw, 100vh) * 1.5);
|
|
||||||
height: 600px;
|
|
||||||
top: calc(50% - 300px);
|
|
||||||
left: 50%;
|
|
||||||
filter: blur(100px);
|
|
||||||
background: rgb(57, 182, 255);
|
|
||||||
animation: rotate-clockwise 4s linear infinite;
|
|
||||||
animation-delay: -3s;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.purpleLayer {
|
|
||||||
&.colorLayer {
|
|
||||||
mask-position: left -3px top -7px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
/* inset: 0; */
|
|
||||||
width: calc(max(100vw, 100vh) * 1.5);
|
|
||||||
height: 600px;
|
|
||||||
top: calc(50% - 300px);
|
|
||||||
left: 50%;
|
|
||||||
filter: blur(100px);
|
|
||||||
background: rgb(189, 69, 251);
|
|
||||||
animation: rotate-clockwise 4s linear infinite;
|
|
||||||
animation-delay: -2s;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.orangeLayer {
|
|
||||||
/* opacity: 0.5; */
|
|
||||||
|
|
||||||
&.colorLayer {
|
|
||||||
mask-position: left -7px top -2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
/* inset: 0; */
|
|
||||||
width: calc(max(100vw, 100vh) * 1.5);
|
|
||||||
height: 600px;
|
|
||||||
top: calc(50% - 300px);
|
|
||||||
left: 50%;
|
|
||||||
filter: blur(100px);
|
|
||||||
background: rgb(255, 87, 51);
|
|
||||||
animation: rotate-counter-clockwise 3s linear infinite;
|
|
||||||
animation-delay: -2s;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.yellowLayer {
|
|
||||||
/* opacity: 0.5; */
|
|
||||||
|
|
||||||
&.colorLayer {
|
|
||||||
mask-position: left -6px top -4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
/* inset: 0; */
|
|
||||||
width: calc(max(100vw, 100vh) * 1.5);
|
|
||||||
height: 600px;
|
|
||||||
top: calc(50% - 300px);
|
|
||||||
left: 50%;
|
|
||||||
filter: blur(100px);
|
|
||||||
background: rgb(255, 214, 0);
|
|
||||||
animation: rotate-counter-clockwise 4s linear infinite;
|
|
||||||
animation-delay: -1s;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 旋转动画 */
|
|
||||||
@keyframes rotate-clockwise {
|
|
||||||
0% {
|
|
||||||
transform: translateX(-50%) rotate(0deg);
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
transform: translateX(-50%) rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes rotate-counter-clockwise {
|
|
||||||
0% {
|
|
||||||
transform: translateX(-50%) rotate(0deg);
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
transform: translateX(-50%) rotate(-360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes wrapper-entry {
|
|
||||||
from {
|
|
||||||
transform: scale(1.1);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: scale(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
rgb(57, 182, 255)
|
|
||||||
rgb(189, 69, 251)
|
|
||||||
rgb(255, 87, 51)
|
|
||||||
rgb(255, 214, 0)
|
|
||||||
*/
|
|
||||||
|
|
||||||
@keyframes mask-running {
|
|
||||||
from {
|
|
||||||
transform: translateX(0%);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: translateX(100%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes mask-running-reverse {
|
|
||||||
from {
|
|
||||||
transform: translateX(100%);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: translateX(0%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.colorWrapper {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
.colorLayer {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
mix-blend-mode: var(--blend-mode);
|
|
||||||
|
|
||||||
/* 边框遮罩 - 中间透明,边缘不透明 */
|
|
||||||
mask-image: url(https://img.alicdn.com/imgextra/i2/O1CN01iW1wfX1C0ICvoPbTq_!!6000000000018-2-tps-512-512.png);
|
|
||||||
mask-repeat: no-repeat;
|
|
||||||
mask-size: 100% 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.borderWrapper {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
--blend-mode: lighten;
|
|
||||||
|
|
||||||
.borderLayer {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
mix-blend-mode: var(--blend-mode);
|
|
||||||
|
|
||||||
mask-border: url(https://img.alicdn.com/imgextra/i3/O1CN01bFjRug1yssyWEUbKL_!!6000000006635-2-tps-256-256.png)
|
|
||||||
25;
|
|
||||||
-webkit-mask-box-image: url(https://img.alicdn.com/imgextra/i3/O1CN01bFjRug1yssyWEUbKL_!!6000000006635-2-tps-256-256.png)
|
|
||||||
25;
|
|
||||||
|
|
||||||
mask-repeat: no-repeat;
|
|
||||||
mask-size: 100% 100%;
|
|
||||||
|
|
||||||
background-color: var(--color-2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.entry .colorWrapper,
|
|
||||||
.entry .borderWrapper {
|
|
||||||
animation: wrapper-entry 0.8s ease-in-out forwards;
|
|
||||||
}
|
|
||||||
|
|
||||||
.exit .colorWrapper,
|
|
||||||
.exit .borderWrapper {
|
|
||||||
animation: wrapper-entry 0.8s ease-in-out reverse forwards;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layerA {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
mix-blend-mode: var(--blend-mode);
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
left: -100%;
|
|
||||||
top: 0;
|
|
||||||
background-image: linear-gradient(
|
|
||||||
to right bottom,
|
|
||||||
transparent,
|
|
||||||
var(--color-1),
|
|
||||||
transparent,
|
|
||||||
var(--color-1),
|
|
||||||
transparent
|
|
||||||
);
|
|
||||||
animation: mask-running 2s linear infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
mix-blend-mode: var(--blend-mode);
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
background-image: linear-gradient(
|
|
||||||
to right bottom,
|
|
||||||
transparent,
|
|
||||||
var(--color-1),
|
|
||||||
transparent,
|
|
||||||
var(--color-1),
|
|
||||||
transparent
|
|
||||||
);
|
|
||||||
animation: mask-running 2s linear infinite;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layerB {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
mix-blend-mode: var(--blend-mode);
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
left: -100%;
|
|
||||||
top: 0;
|
|
||||||
background: linear-gradient(
|
|
||||||
to right top,
|
|
||||||
transparent,
|
|
||||||
var(--color-2),
|
|
||||||
transparent,
|
|
||||||
var(--color-2),
|
|
||||||
transparent
|
|
||||||
);
|
|
||||||
animation: mask-running-reverse 3s linear infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
mix-blend-mode: var(--blend-mode);
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
background: linear-gradient(
|
|
||||||
to right top,
|
|
||||||
transparent,
|
|
||||||
var(--color-2),
|
|
||||||
transparent,
|
|
||||||
var(--color-2),
|
|
||||||
transparent
|
|
||||||
);
|
|
||||||
animation: mask-running-reverse 3s linear infinite;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layerC {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
|
|
||||||
opacity: 0.5;
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
mix-blend-mode: var(--blend-mode);
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
left: -100%;
|
|
||||||
top: 0;
|
|
||||||
background: linear-gradient(
|
|
||||||
to right top,
|
|
||||||
transparent,
|
|
||||||
var(--color-3),
|
|
||||||
transparent,
|
|
||||||
var(--color-3),
|
|
||||||
transparent
|
|
||||||
);
|
|
||||||
animation: mask-running 1s linear infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
mix-blend-mode: var(--blend-mode);
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
background: linear-gradient(
|
|
||||||
to right top,
|
|
||||||
transparent,
|
|
||||||
var(--color-3),
|
|
||||||
transparent,
|
|
||||||
var(--color-3),
|
|
||||||
transparent
|
|
||||||
);
|
|
||||||
animation: mask-running 1s linear infinite;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
This is the CSS implementation of ai-motion.
|
|
||||||
|
|
||||||
Easy to use but Terrible performance. Causing full screen glitching in some browsers.
|
|
||||||
|
|
||||||
Use it only in a small area.
|
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link
|
<link
|
||||||
rel="icon"
|
rel="icon"
|
||||||
type="image/svg+xml"
|
type="image/webp"
|
||||||
href="https://img.alicdn.com/imgextra/i2/O1CN012eGDRI1X6nnMt9clU_!!6000000002875-49-tps-64-64.webp"
|
href="https://page-agent.github.io/assets/brand/page-agent-color-64.webp"
|
||||||
/>
|
/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>PageAgent - The GUI Agent Living in Your Webpage</title>
|
<title>PageAgent - The GUI Agent Living in Your Webpage</title>
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
property="og:image"
|
property="og:image"
|
||||||
content="https://img.alicdn.com/imgextra/i3/O1CN01JPT4Fj1FJTfmHfNxO_!!6000000000466-49-tps-512-512.webp"
|
content="https://page-agent.github.io/assets/brand/page-agent-color-512.webp"
|
||||||
/>
|
/>
|
||||||
<meta property="og:url" content="https://alibaba.github.io/page-agent" />
|
<meta property="og:url" content="https://alibaba.github.io/page-agent" />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
@@ -33,6 +33,7 @@
|
|||||||
<meta property="og:locale:alternate" content="zh_CN" />
|
<meta property="og:locale:alternate" content="zh_CN" />
|
||||||
|
|
||||||
<!-- Google tag (gtag.js) -->
|
<!-- Google tag (gtag.js) -->
|
||||||
|
<!-- cspell:disable -->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HCGRJTN3HM"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HCGRJTN3HM"></script>
|
||||||
<script>
|
<script>
|
||||||
window.dataLayer = window.dataLayer || []
|
window.dataLayer = window.dataLayer || []
|
||||||
@@ -43,6 +44,7 @@
|
|||||||
|
|
||||||
gtag('config', 'G-HCGRJTN3HM')
|
gtag('config', 'G-HCGRJTN3HM')
|
||||||
</script>
|
</script>
|
||||||
|
<!-- cspell:enable -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root">
|
<div id="root">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@page-agent/website",
|
"name": "@page-agent/website",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.10.0",
|
"version": "1.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite --host 0.0.0.0",
|
"dev": "vite --host 0.0.0.0",
|
||||||
@@ -10,24 +10,24 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@radix-ui/react-icons": "^1.3.2",
|
"@radix-ui/react-icons": "^1.3.2",
|
||||||
"@radix-ui/react-separator": "^1.1.9",
|
"@radix-ui/react-separator": "^1.1.11",
|
||||||
"@radix-ui/react-slot": "^1.2.4",
|
"@radix-ui/react-slot": "^1.3.0",
|
||||||
"@radix-ui/react-switch": "^1.3.0",
|
"@radix-ui/react-switch": "^1.3.3",
|
||||||
"@radix-ui/react-tooltip": "^1.2.9",
|
"@radix-ui/react-tooltip": "^1.2.12",
|
||||||
"@types/react": "^19.2.17",
|
"@types/react": "^19.2.17",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"lucide-react": "^1.16.0",
|
"lucide-react": "^1.24.0",
|
||||||
"motion": "^12.40.0",
|
"motion": "^12.42.2",
|
||||||
"next-themes": "^0.4.6",
|
"next-themes": "^0.4.6",
|
||||||
"react": "^19.2.6",
|
"react": "^19.2.7",
|
||||||
"react-dom": "^19.2.6",
|
"react-dom": "^19.2.7",
|
||||||
"rough-notation": "^0.5.1",
|
"rough-notation": "^0.5.1",
|
||||||
"simple-icons": "^16.23.0",
|
"simple-icons": "^16.25.0",
|
||||||
"sonner": "^2.0.7",
|
"sonner": "^2.0.7",
|
||||||
"tailwind-merge": "^3.6.0",
|
"tailwind-merge": "^3.6.0",
|
||||||
"tailwindcss": "^4.3.0",
|
"tailwindcss": "^4.3.2",
|
||||||
"tw-animate-css": "^1.4.0",
|
"tw-animate-css": "^1.4.0",
|
||||||
"wouter": "^3.10.0"
|
"wouter": "^3.10.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ export default function Header() {
|
|||||||
onClick={() => setMobileMenuOpen(false)}
|
onClick={() => setMobileMenuOpen(false)}
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
src="https://img.alicdn.com/imgextra/i2/O1CN01HB8ylu1uozANEMZw2_!!6000000006085-49-tps-128-128.webp"
|
src="https://page-agent.github.io/assets/brand/page-agent-color-128.webp"
|
||||||
alt="PageAgent Logo"
|
alt="PageAgent Logo"
|
||||||
className="w-10 h-10 rounded-xl group-hover:scale-110 transition-transform duration-200"
|
className="w-10 h-10 rounded-xl group-hover:scale-110 transition-transform duration-200"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
// Demo build (auto-init with demo LLM, for quick testing)
|
// Demo build (auto-init with demo LLM, for quick testing)
|
||||||
export const CDN_DEMO_URL =
|
export const CDN_DEMO_URL =
|
||||||
'https://cdn.jsdelivr.net/npm/page-agent@1.10.0/dist/iife/page-agent.demo.js'
|
'https://cdn.jsdelivr.net/npm/page-agent@1.12.1/dist/iife/page-agent.demo.js'
|
||||||
export const CDN_DEMO_CN_URL =
|
export const CDN_DEMO_CN_URL =
|
||||||
'https://registry.npmmirror.com/page-agent/1.10.0/files/dist/iife/page-agent.demo.js'
|
'https://registry.npmmirror.com/page-agent/1.12.1/files/dist/iife/page-agent.demo.js'
|
||||||
|
|
||||||
// Demo LLM for website testing (homepage quick trial uses flash)
|
// Demo LLM for website testing (homepage quick trial uses flash)
|
||||||
export const DEMO_MODEL = 'qwen3.5-flash'
|
export const DEMO_MODEL = 'qwen3.5-flash'
|
||||||
|
|||||||
@@ -9,13 +9,15 @@ export function useGitHubStars() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (cached !== null) return
|
if (cached !== null) return
|
||||||
fetch(STATS_URL)
|
const controller = new AbortController()
|
||||||
|
fetch(STATS_URL, { signal: controller.signal })
|
||||||
.then((r) => r.json())
|
.then((r) => r.json())
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
cached = data.stargazers_count ?? null
|
cached = data.stargazers_count ?? null
|
||||||
setStars(cached)
|
setStars(cached)
|
||||||
})
|
})
|
||||||
.catch(() => {})
|
.catch(() => {})
|
||||||
|
return () => controller.abort()
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
return stars
|
return stars
|
||||||
|
|||||||
@@ -143,13 +143,6 @@ const result = await agent.execute('Fill in the form with test data')`}
|
|||||||
required: false,
|
required: false,
|
||||||
description: 'LLM AK',
|
description: 'LLM AK',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'temperature',
|
|
||||||
type: 'number',
|
|
||||||
description: isZh
|
|
||||||
? '模型温度参数,控制输出随机性'
|
|
||||||
: 'Model temperature, controls output randomness',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'maxRetries',
|
name: 'maxRetries',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ import { Heading } from '@/components/Heading'
|
|||||||
import { useLanguage } from '@/i18n/context'
|
import { useLanguage } from '@/i18n/context'
|
||||||
|
|
||||||
const BASELINE = new Set([
|
const BASELINE = new Set([
|
||||||
'gpt-5.1',
|
|
||||||
'gpt-5.4-mini',
|
'gpt-5.4-mini',
|
||||||
'claude-haiku-4.5',
|
'gpt-5.4-nano',
|
||||||
|
'claude-haiku-4-5',
|
||||||
'gemini-3.5-flash',
|
'gemini-3.5-flash',
|
||||||
'deepseek-v4-flash',
|
'deepseek-v4-flash',
|
||||||
'qwen3.5-plus',
|
'qwen3.5-plus',
|
||||||
@@ -25,11 +25,13 @@ const MODEL_GROUPS: Record<string, string[]> = {
|
|||||||
'qwen3.6-flash',
|
'qwen3.6-flash',
|
||||||
'qwen3.5-plus',
|
'qwen3.5-plus',
|
||||||
'qwen3.5-flash',
|
'qwen3.5-flash',
|
||||||
'qwen3-coder-next',
|
'qwen3-max',
|
||||||
'qwen-3-max',
|
// 'qwen3-coder-next', // low success rate
|
||||||
'qwen-3-plus',
|
|
||||||
],
|
],
|
||||||
OpenAI: [
|
OpenAI: [
|
||||||
|
'gpt-5.6-sol',
|
||||||
|
'gpt-5.6-terra',
|
||||||
|
'gpt-5.6-luna',
|
||||||
'gpt-5.5',
|
'gpt-5.5',
|
||||||
'gpt-5.4',
|
'gpt-5.4',
|
||||||
'gpt-5.4-mini',
|
'gpt-5.4-mini',
|
||||||
@@ -44,24 +46,30 @@ const MODEL_GROUPS: Record<string, string[]> = {
|
|||||||
DeepSeek: ['deepseek-v4-pro', 'deepseek-v4-flash', 'deepseek-3.2'],
|
DeepSeek: ['deepseek-v4-pro', 'deepseek-v4-flash', 'deepseek-3.2'],
|
||||||
Google: [
|
Google: [
|
||||||
'gemini-3.5-flash',
|
'gemini-3.5-flash',
|
||||||
|
'gemini-3.1-pro',
|
||||||
'gemini-3.1-flash-lite',
|
'gemini-3.1-flash-lite',
|
||||||
'gemini-3-pro',
|
'gemini-2.5-pro',
|
||||||
'gemini-3-flash',
|
'gemini-2.5-flash',
|
||||||
'gemini-2.5',
|
|
||||||
],
|
],
|
||||||
Anthropic: [
|
Anthropic: [
|
||||||
'claude-opus-4.8',
|
'claude-sonnet-5',
|
||||||
'claude-opus-4.7',
|
'claude-fable-5',
|
||||||
'claude-opus-4.6',
|
'claude-opus-4-8',
|
||||||
'claude-opus-4.5',
|
'claude-opus-4-7',
|
||||||
'claude-sonnet-4.5',
|
'claude-opus-4-6',
|
||||||
'claude-haiku-4.5',
|
'claude-opus-4-5',
|
||||||
'claude-sonnet-3.5',
|
'claude-sonnet-4-5',
|
||||||
|
'claude-haiku-4-5',
|
||||||
],
|
],
|
||||||
MiniMax: ['MiniMax-M2.7', 'MiniMax-M2.7-highspeed', 'MiniMax-M2.5', 'MiniMax-M2.5-highspeed'],
|
MiniMax: [
|
||||||
xAI: ['grok-4.1-fast', 'grok-4', 'grok-code-fast'],
|
// 'MiniMax-M3', low success rate
|
||||||
MoonshotAI: ['kimi-k2.5'],
|
'MiniMax-M2.7',
|
||||||
'Z.AI': ['glm-5', 'glm-4.7'],
|
'MiniMax-M2.5',
|
||||||
|
],
|
||||||
|
xAI: ['grok-4.5', 'grok-4.3', 'grok-build-0.1'],
|
||||||
|
Tencent: ['hy3'],
|
||||||
|
MoonshotAI: ['kimi-k2.7-code', 'kimi-k2.6', 'kimi-k2.5'],
|
||||||
|
'Z.AI': ['glm-5.2', 'glm-5.1', 'glm-5', 'glm-4.7'],
|
||||||
}
|
}
|
||||||
|
|
||||||
const ModelBadge = ({ model, baseline }: { model: string; baseline?: boolean }) => (
|
const ModelBadge = ({ model, baseline }: { model: string; baseline?: boolean }) => (
|
||||||
@@ -91,7 +99,7 @@ export default function Models() {
|
|||||||
|
|
||||||
<section className="mb-10">
|
<section className="mb-10">
|
||||||
<Heading id="tested-models" className="text-2xl font-semibold mb-3">
|
<Heading id="tested-models" className="text-2xl font-semibold mb-3">
|
||||||
{isZh ? '已测试模型' : 'Tested Models'}
|
{isZh ? '模型列表' : 'Model List'}
|
||||||
</Heading>
|
</Heading>
|
||||||
<div className="bg-linear-to-br from-emerald-50 to-cyan-50 dark:from-emerald-950/30 dark:to-cyan-950/30 rounded-xl p-6 border border-emerald-200/50 dark:border-emerald-800/50">
|
<div className="bg-linear-to-br from-emerald-50 to-cyan-50 dark:from-emerald-950/30 dark:to-cyan-950/30 rounded-xl p-6 border border-emerald-200/50 dark:border-emerald-800/50">
|
||||||
<div className="grid grid-cols-[5rem_1fr] gap-x-3 gap-y-3 items-start">
|
<div className="grid grid-cols-[5rem_1fr] gap-x-3 gap-y-3 items-start">
|
||||||
@@ -124,8 +132,8 @@ export default function Models() {
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
{isZh
|
{isZh
|
||||||
? 'ToolCall 能力较弱的模型可能返回错误的格式,常见错误能够自动恢复,建议设置较高的 temperature'
|
? 'ToolCall 能力较弱的模型可能返回错误的格式,常见错误能够自动恢复'
|
||||||
: 'Models with weaker ToolCall capabilities may return incorrect formats. Common errors usually auto-recover. Higher temperature recommended'}
|
: 'Models with weaker ToolCall capabilities may return incorrect formats. Common errors usually auto-recover'}
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
{isZh
|
{isZh
|
||||||
@@ -281,7 +289,7 @@ LLM_MODEL_NAME="qwen3.5-plus"`}
|
|||||||
code={`const pageAgent = new PageAgent({
|
code={`const pageAgent = new PageAgent({
|
||||||
baseURL: 'https://your-claude-proxy.example/v1',
|
baseURL: 'https://your-claude-proxy.example/v1',
|
||||||
apiKey: 'your-api-key',
|
apiKey: 'your-api-key',
|
||||||
model: 'claude-sonnet-4.5',
|
model: 'claude-sonnet-5',
|
||||||
transformRequestBody: (requestBody) => ({
|
transformRequestBody: (requestBody) => ({
|
||||||
...requestBody,
|
...requestBody,
|
||||||
cache_control: { type: 'ephemeral' },
|
cache_control: { type: 'ephemeral' },
|
||||||
|
|||||||
@@ -17,11 +17,17 @@ import { useLanguage } from '../../i18n/context'
|
|||||||
|
|
||||||
let pageAgentModule: Promise<typeof import('page-agent')> | null = null
|
let pageAgentModule: Promise<typeof import('page-agent')> | null = null
|
||||||
|
|
||||||
function getInjection(useCN?: boolean) {
|
/**
|
||||||
const cdn = useCN ? CDN_DEMO_CN_URL : CDN_DEMO_URL
|
* Get the bookmarklet injection script
|
||||||
|
* @param cdnSource Which CDN mirror to use
|
||||||
|
* @param isZh Whether to use Chinese language
|
||||||
|
*/
|
||||||
|
function getInjection(cdnSource: 'china' | 'international', isZh?: boolean) {
|
||||||
|
const cdn = cdnSource === 'china' ? CDN_DEMO_CN_URL : CDN_DEMO_URL
|
||||||
|
const locale = isZh ? 'zh-CN' : 'en-US'
|
||||||
|
|
||||||
const injection = encodeURI(
|
const injection = encodeURI(
|
||||||
`javascript:(function(){var s=document.createElement('script');s.src=\`${cdn}?t=\${Math.random()}\`;s.setAttribute('crossorigin', true);s.type="text/javascript";s.onload=()=>console.log('PageAgent script loaded!');document.body.appendChild(s);})();`
|
`javascript:(function(){var s=document.createElement('script');s.src=\`${cdn}?lang=${locale}&t=\${Math.random()}\`;s.setAttribute('crossorigin', true);s.type="text/javascript";s.onload=()=>console.log('PageAgent script loaded!');document.body.appendChild(s);})();`
|
||||||
)
|
)
|
||||||
|
|
||||||
return `
|
return `
|
||||||
@@ -298,7 +304,7 @@ export default function HeroSection() {
|
|||||||
</select>
|
</select>
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: getInjection(cdnSource === 'china'),
|
__html: getInjection(cdnSource, isZh),
|
||||||
}}
|
}}
|
||||||
></div>
|
></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ export default function OneMoreThingSection() {
|
|||||||
className="group inline-flex items-center gap-3 px-8 py-4 bg-linear-to-r from-blue-600 to-blue-700 hover:from-blue-700 hover:to-blue-800 text-white font-medium rounded-2xl shadow-lg hover:shadow-xl transition-all duration-300 hover:scale-105"
|
className="group inline-flex items-center gap-3 px-8 py-4 bg-linear-to-r from-blue-600 to-blue-700 hover:from-blue-700 hover:to-blue-800 text-white font-medium rounded-2xl shadow-lg hover:shadow-xl transition-all duration-300 hover:scale-105"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
src="https://img.alicdn.com/imgextra/i3/O1CN01JpW0Vo1sR3FpiZKFM_!!6000000005762-55-tps-192-192.svg"
|
src="https://page-agent.github.io/assets/third-party/chrome-web-store-192.svg"
|
||||||
alt="Chrome Web Store"
|
alt="Chrome Web Store"
|
||||||
className="w-7 h-7"
|
className="w-7 h-7"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user