Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 914 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 914 Bytes

Web Explorer Agent

This is a web explorer agent that can be used to explore the web and get information about a given topic.

Usage

  1. Installation: Setup your environment (you can use venv)

    python -m venv .venv

    Activate the virtual environment

    source .venv/bin/activate

    Install the dependencies

    pip install -r requirements.txt
  2. Configure your prompt, title & instruction in the app/main.py file

  3. Optional: Configure your model_name in the app/agent/main.py line 45 file. You can swap to any model of your choice here e.g AnthropicModelName | OpenAIModelName

    By default, the model is set to AnthropicModelName.CLAUDE_3_5_LATEST

    self.llm_model = LLMModel(model_name=AnthropicModelName.CLAUDE_3_5_LATEST)
  4. Run the program

    python -m app.main