Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LordXido
/
CodexCapsule
like
1
Running
App
Files
Files
Community
cb68079
CodexCapsule
/
agents.js
LordXido
Create agents.js
c73d07c
verified
2 months ago
raw
Copy download link
history
blame
Safe
179 Bytes
let
agents=[];
export
function
spawnAgent
(
){
agents.
push
({
x
:
Math
.
random
(),
y
:
Math
.
random
(),
energy
:
1
});
}
export
function
updateAgents
(
){
agents.
forEach
(
a
=>
a.
energy
*=
0.999
);
}