ExpSeek
[ACL 2026] ExpSeek: Self-Triggered Experience Seeking for Web Agents
File Explorer
- framework.png
- ablate_only_answer.yaml
- ablate_only_process.yaml
- expseek_core.yaml
- expseek_emb.yaml
- expseek_zero.yaml
- vanilla-api.yaml
- vanilla-vllm-entropy.yaml
- vanilla-vllm.yaml
- gaia.jsonl
- seal-hard.jsonl
- webwalker_test.jsonl
- webwalker_train.jsonl
- webwalker_train_demo.jsonl
- xbench.jsonl
- expseek_documentation.md
- expseek_documentation_zh.md
- EXP-KB-embedding.json
- batch1.jsonl
- batch2.jsonl
- batch1.jsonl
- batch2.jsonl
- entropy_threshold.pdf
- entropy_threshold.png
- EXP-KB-final-label.jsonl
- EXP-KB-process-label.jsonl
- EXP-KB.json
- pair-EXP.jsonl
- pair.jsonl
- EXP-KB.json
- base_agent.py
- prompt.py
- react_agent.py
- client.py
- tool_manager.py
- tool_search.py
- tool_visit.py
- visit_memory.jsonl
- entropy_server.py
- step1_aggregate.py
- step2_generate_exp.py
- step3_label_topic.py
- step4_build_kb.py
- step5_entropy_threshold.py
- step6_build_embedding.py
- eval_round1.jsonl
- eval_round2.jsonl
- eval_round3.jsonl
- eval_round4.jsonl
- eval_round5.jsonl
- iter1.jsonl
- iter2.jsonl
- iter3.jsonl
- iter4.jsonl
- iter5.jsonl
- metrics.txt
- evaluate.py
- metric.py
- run_inference.py
- start_vllm_8b.sh
- config.json
- configuration.json
- generation_config.json
- model.safetensors.index.json
- tokenizer.json
- tokenizer_config.json
- vocab.json
- environment.yml
- LICENSE
- README.md
- requirements.txt
- run_build_kb.sh
- run_eval.sh
- run_expseek.sh
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda env
View Details ▼
conda env
Manage conda environments.
conda env create {{[-f|--file]}} {{path/to/file}}
Create an environment from an environment file (YAML, TXT, etc.):
conda env remove {{[-n|--name]}} {{environment_name}}
Delete an environment and everything in it:
conda env update {{[-f|--file]}} {{path/to/file}} --prune
Update an environment based on an environment file:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
