Socket
Book a DemoInstallSign in
Socket

@mlc-ai/web-agent-interface

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mlc-ai/web-agent-interface

A tool library for LLM agent in browsers to interact with the web.

0.0.3
latest
Source
npmnpm
Version published
Maintainers
0
Created
Source

Web-Agent-Interface Library

Overview

The web-agent-interface library provides tools to LLM agents in browsers to interact with different websites.

Note: The project is still in development phase. It has limited coverage and its APIs may change.

Supported Tools

  • General DOM Operations: Get page content and user selection.
  • Overleaf: Edit Overleaf documents.
  • Google Calendar (GCal): Read and create events on Google Calendar.

Installation

To install and build the library, follow these steps:

  • Clone the repository:

    git clone https://github.com/mlc-ai/web-agent-interface.git
    cd web-agent-interface
    
  • Install dependencies and build the project:

    npm install
    npm run build
    

Usage

1. Initialize State

import { State } from '@mlc-ai/web-agent-interface';

const state = new State();

2. Import Tools

import { tool, retriever, action } from '@mlc-ai/web-agent-interface';

3. Give Tool Description to Prompt

const system_prompt = `
You are a helpful AI agent.

You have the following tools to use:

${tools.map((t) => JSON.stringify(t.schema)).join(",\n")}
`

3. Call Tool Function to Get Observation

const { tool_name, parameters } = extractToolCall(llm_response);
const observation = tool[tool_name].implementation(state, parameters);
console.log("Got observation:", observation);

FAQs

Package last updated on 03 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.