browser_qwen.md
We have also developed an example application based on Qwen-Agent: a Chrome browser extension called BrowserQwen, which has key features such as:
You can watch the following showcase videos to learn about the basic operations of BrowserQwen:
This mode is designed for creating long articles based on browsed web pages and PDFs.
<figure> </figure>It allows you to call plugins to assist in rich text creation.
<figure> </figure>In this mode, you can engage in multi-webpage QA.
<figure > </figure>Create data charts using the code interpreter.
<figure> </figure>Web page QA
<figure> </figure>PDF document QA
<figure> </figure>On your local machine (the machine where you can open the Chrome browser), you will need to deploy a database service to manage your browsing history and conversation history.
If you are using DashScope's model service, then please execute the following command:
# Start the database service, specifying the model on DashScope by using the --llm flag.
# The value of --llm can be one of the following, in increasing order of resource consumption:
# - qwen1.5-7b/14b/72b-chat (the same as the open-sourced Qwen1.5 7B/14B/72B Chat model)
# - qwen-turbo, qwen-plus, qwen-max (qwen-max is recommended)
# "YOUR_DASHSCOPE_API_KEY" is a placeholder. The user should replace it with their actual key.
python run_server.py --llm qwen-max --model_server dashscope --workstation_port 7864 --api_key YOUR_DASHSCOPE_API_KEY
If you are using your own model service instead of DashScope, then please execute the following command:
# Specify the model service, and start the database service.
# Example: Assuming Qwen1.5-72B-Chat is deployed at http://localhost:8000/v1 using vLLM, you can specify the model service as:
# --llm Qwen1.5-72B-Chat --model_server http://localhost:8000/v1 --api_key EMPTY
python run_server.py --llm {MODEL} --model_server {API_BASE} --workstation_port 7864 --api_key {API_KEY}
Now you can access http://127.0.0.1:7864/ to use the Workstation's Editor mode and Chat mode.
Install the BrowserQwen Chrome extension:
chrome://extensions/ in the address bar, then press Enter.Developer mode in the top right corner is turned on, then click on Load unpacked to upload
the browser_qwen directory from this project and enable it.Note that after installing the Chrome extension, you need to refresh the page for the extension to take effect.
When you want Qwen to read the content of the current webpage:
Add to Qwen's Reading List button on the screen to authorize Qwen to analyze the page in the background.