Beginner ⏱️ 2 min

🎓 FNI: Free2AITools Nexus Index

How the Free2AITools Nexus Index (FNI) V2.0 objectively ranks 464K+ AI entities using five factors — Semantic, Authority, Popularity, Recency, Quality — plus Agent structured tags.

Free2AITools Nexus Index (FNI)

The FNI is the ranking algorithm behind Free2AITools. It evaluates 464,000+ AI entities (models, datasets, papers, tools, agents, spaces, prompts) across five weighted factors to produce a single 0-100 score.

Current version: V2.0

The Formula: S.A.P.R.Q

FNI = 0.35*S + 0.25*A + 0.15*P + 0.15*R + 0.10*Q
FactorWeightWhat It Measures
S — Semantic35%Query-time relevance via vector similarity matching and AI-powered reranking
A — Authority25%Ecosystem gravity: knowledge mesh centrality, cross-entity citations, source credibility
P — Popularity15%Community adoption: downloads, stars, likes (log-scaled to prevent gaming)
R — Recency15%Freshness: exponential time decay with type-specific half-lives
Q — Quality10%Completeness: README depth, metadata richness, runtime compatibility

Agent Structured Tags (V2.0)

Beyond the five score factors, FNI V2.0 attaches structured metadata for machine-readable model selection:

TagTypeMeaning
ollama_compatiblebooleanHas GGUF quantization files — can be run via ollama run
can_run_localbooleanLocally runnable: ≤13B parameters + GGUF available
license_typestringClassified as permissive, copyleft, non-commercial, or unknown
hosted_onstring[]Cloud providers offering this model (Replicate, Together, HF Inference)
hosted_on_checked_atISO dateWhen the hosting data was last verified

These tags power the select_model API — AI agents can filter models by hardware constraints, license type, and deployment target via MCP or HTTP.

Interpreting FNI Scores

RangeLabelMeaning
80-100EliteTop-tier: strong across all five factors
60-79StrongWell-rounded with clear strengths in 3+ factors
40-59SolidGood in 1-2 areas, average elsewhere
20-39EmergingNew or niche — may be rising fast (check R factor)
0-19Low SignalMinimal community footprint or very stale

Version History

V1.0 (2025) — Originally called “Freshness-Novelty Index.” Four-factor P.V.C.U formula (Popularity, Velocity, Context, Uniqueness). Single-source HuggingFace data. No semantic component.

V2.0 (2026) — Renamed to “Free2AITools Nexus Index.” Five-factor S.A.P.R.Q formula. Multi-source aggregation across 7+ platforms. 464K+ entities evaluated daily. Agent structured tags for select_model API. Factor scores included in every API response.

Anti-Gaming

FNI uses multi-dimensional cross-validation to detect manipulation:

  • Anomalous growth: alerts when 7-day metric growth exceeds 10x the category average
  • Ratio anomalies: download/star ratios outside reasonable ranges for the entity type
  • Content mismatch: high popularity but no substantial documentation or code

Flagged entities are reviewed and scores adjusted. Log-scaling on popularity metrics (P factor) inherently dampens artificial inflation.

For Developers

Every API response includes fni_version and per-factor breakdown:

{
  "fni_score": 72.4,
  "fni_factors": {
    "semantic": 50.0,
    "authority": 85.2,
    "popularity": 67.1,
    "recency": 91.0,
    "quality": 44.3
  }
}

The FNI algorithm is open source: github.com/mosesy5688-cell/ai-nexus

🕸️ Knowledge Mesh