Metadata-Version: 2.4
Name: retrospec
Version: 0.1.0
Summary: Query the RETROSPEC AI history knowledge graph — events, people, models, and concepts spanning 1305 to 2026
License: MIT
Project-URL: Homepage, https://github.com/arpan1221/RETROSPEC
Keywords: ai,history,knowledge-graph,machine-learning,retrospec
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: thefuzz>=0.22.0

# retrospec

Query the RETROSPEC AI history knowledge graph from Python.

## Install

```bash
pip install retrospec
```

## Usage

```python
from retrospec import Retrospec

r = Retrospec('/path/to/RETROSPEC')

# Search
r.search('attention mechanism')

# Lookup
r.lookup('evt_2017_attention_is_all_you_need')

# Trace lineage
r.trace_lineage('model_gpt_series')

# Epoch events
r.epoch_events('08_transformer_age')

# Traverse graph
r.traverse('person_hinton_geoffrey', graph='influence')

# Stats
r.stats()
```
