This is a web explorer agent that can be used to explore the web and get information about a given topic.
-
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
-
Configure your
prompt
,title
&instruction
in theapp/main.py
file -
Optional: Configure your
model_name
in theapp/agent/main.py
line 45 file. You can swap to any model of your choice here e.g AnthropicModelName | OpenAIModelNameBy default, the model is set to
AnthropicModelName.CLAUDE_3_5_LATEST
self.llm_model = LLMModel(model_name=AnthropicModelName.CLAUDE_3_5_LATEST)
-
Run the program
python -m app.main