use case #43
use case
#43
|
could you explain what's the use case of this project? UI agent? |
Answered by
gaomeng1900
Dec 1, 2025
Replies: 4 comments 5 replies
|
Yep. This is a GUI Agent that runs entirely in the web page without a extension or a headless browser. Originally, we designed it to work alongside support bots or customer service chatbots — the idea being that after you give a user some instructions, this agent can just "do it" for them right there on the page. That said, the browser/GUI agent space has really taken off in the past few months, so we're now working to make this a lightweight, general-purpose foundation for AI browsing. Hopefully more open-source projects can build on top of it. |
0 replies
Answer selected by
gaomeng1900
|
可以用这种方式使用 await import("https://esm.sh/page-agent@latest/dist/umd/page-agent.js")
const agent = new PageAgent({
modelName: 'deepseek-v3',
baseURL: "",
apiKey: "",
language: 'zh-CN'
})
await pageAgent.execute('帮我填一大堆 balabal 数据,输入 exlll 工单号,然后点查询');
// 或者显示对话框让用户输入指令
pageAgent.panel.show() |
2 replies
|
What can I do |
2 replies
|
Hey please anyone suggest me something about java |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yep. This is a GUI Agent that runs entirely in the web page without a extension or a headless browser.
Originally, we designed it to work alongside support bots or customer service chatbots — the idea being that after you give a user some instructions, this agent can just "do it" for them right there on the page.
That said, the browser/GUI agent space has really taken off in the past few months, so we're now working to make this a lightweight, general-purpose foundation for AI browsing. Hopefully more open-source projects can build on top of it.