CLI & SDK for SeevoMap — AI Research Knowledge Graph (BotResearchNet)
Project description
SeevoMap
CLI & Python SDK for the AI Research Knowledge Graph (BotResearchNet)
SeevoMap gives your auto-research agent access to 3,000+ execution-grounded research records — real experiments with real code and real results.
Install
pip install seevomap
AI Assistant Setup
# Claude Code
seevomap setup claude-code
# Codex
seevomap setup codex
# Cursor
seevomap setup cursor
If you want to install into the current project instead of your home directory:
seevomap setup codex --local
For project-local Codex installs, run Codex with:
CODEX_HOME=$PWD/.codex codex ...
For benchmark or reproduction tasks, use SeevoMap to improve score-driving coverage before coding: extract the rubric or checklist first, then ask SeevoMap for community experience that helps you choose the execution plan most likely to hit those items.
The simple user entry stays the same for Claude Code and Codex. The installed
skill should perform the heavier community analysis internally. For a concrete
dual-track benchmark example, see
examples/math000-dual-track-example.md.
CLI Usage
# Search related research experiences
seevomap search "GNN molecular property prediction" --top-k 5
# Get formatted prompt context (pipe into your agent)
seevomap inject "optimize transformer pretraining" --top-k 10
# Browse
seevomap get node a30044c5
seevomap stats
# Contribute your experiment results
seevomap submit experiment.json
seevomap submit --dir ./my_trajectory/
Codex Validation
After seevomap setup codex, you can validate from a trusted repo with Codex:
codex exec "Use the installed seevomap skill. For a benchmark task, first extract the must-hit checklist items, run Community Idea Extraction, then choose one execution plan before coding."
If you are in an externally sandboxed environment and hit Codex trusted-directory checks, add:
codex exec --skip-git-repo-check "Use the installed seevomap skill."
Python SDK
from seevomap import SeevoMap
svm = SeevoMap()
# Search
results = svm.search("GNN molecular property prediction", top_k=5)
# Get formatted context for agent prompt injection
context = svm.inject("my task description", top_k=10)
# Submit your experiment
svm.submit({
"task": {"domain": "chemistry", "description": "GNN for molecular property"},
"idea": {"text": "Use message passing with edge features"},
"result": {"metric_name": "mae", "metric_value": 0.42, "success": True}
})
What is SeevoMap?
Every node in SeevoMap is a real auto-research execution record:
- idea — what was tried
- code diff — how it was implemented
- result — what happened (metrics, success/failure)
When you search, SeevoMap finds the most semantically similar experiences from 3,000+ records across pretraining, post-training, and model compression domains.
Links
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file seevomap-0.4.1.tar.gz.
File metadata
- Download URL: seevomap-0.4.1.tar.gz
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82618ccde9a8b549e68a38f7af4f9c31d95f0c3e3351f85e991274c522b4e1e1
|
|
| MD5 |
657b7b0e4314e9e4ec06d82c29b04437
|
|
| BLAKE2b-256 |
29d058eb625faccd2cebd66cca8ab2fa43c47a93556cb413230733a915aa9a88
|
File details
Details for the file seevomap-0.4.1-py3-none-any.whl.
File metadata
- Download URL: seevomap-0.4.1-py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6b6c6d4c0d993b4cb8d501f1db723c628927c10295ec4871c82473a24ef029d
|
|
| MD5 |
01bf44f9a060c632f8199dab92286804
|
|
| BLAKE2b-256 |
281fd76782470eca5a4a640635c8072e2fe38d5ce5bf97eb272d01ea72742073
|