Module: Legion::Extensions::Agentic::Attention::Priming::Helpers::Constants

Defined in:
lib/legion/extensions/agentic/attention/priming/helpers/constants.rb

Constant Summary collapse

PRIME_BOOST =

Base activation boost from a prime

0.3
PRIME_DECAY =

How fast priming decays per tick

0.08
SPREAD_FACTOR =

Spreading activation factor (each hop reduces by this ratio)

0.5
MAX_SPREAD_HOPS =

Maximum hops for spreading activation

3
PRIME_THRESHOLD =

Minimum activation to be considered primed

0.1
MAX_CONCEPTS =

Maximum concepts in the network

500
MAX_ASSOCIATIONS =

Maximum associations per concept

20
MAX_ACTIVE_PRIMES =

Maximum active primes at once

100
DEFAULT_ASSOCIATION_STRENGTH =

Default association strength between new connections

0.5
ASSOCIATION_STRENGTHEN =

Strengthening factor when association is activated

0.05
ASSOCIATION_DECAY =

Weakening factor for unused associations

0.01
ASSOCIATION_FLOOR =

Association strength floor (never fully disconnect)

0.05
ASSOCIATION_CEILING =

Association strength ceiling

1.0