use case #43
-
|
could you explain what's the use case of this project? UI agent? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 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. |
Beta Was this translation helpful? Give feedback.
-
|
可以用这种方式使用 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() |
Beta Was this translation helpful? Give feedback.
-
|
What can I do |
Beta Was this translation helpful? Give feedback.
-
|
Hey please anyone suggest me something about java |
Beta Was this translation helpful? Give feedback.
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.