Spaces:
Paused
Paused
File size: 1,099 Bytes
f95b0b5 bf6568f 68cf43c bf6568f f95b0b5 bf6568f f95b0b5 bf6568f f95b0b5 68cf43c f95b0b5 bf6568f f95b0b5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
import { pick } from "./pick"
import { Agent, Scene } from "./types"
const actions = [
"standing and waiting",
"standing and looking at camera",
"standing and adjusting their tie",
"standing and talking on a cellphone",
"standing and reading the journal"
]
const positions = [
"on the roof of a building",
"in the lobby of a building",
"in an elevator",
"on the sidewalk of a street"
]
const lights = [
"during the day",
"during the night",
]
const actionnables = [
"face",
"costume",
"street",
"book",
"building",
]
export const agent: Agent = {
title: "Smith",
type: "smith",
simulate: (): Scene => {
const action = pick(actions)
const position = pick(positions)
const light = pick(lights)
const prompt = [
`static medium shot of Agent Smith from the Matrix`,
`wearing a black costume with black tie and black sunglasses`,
action,
position,
light,
`high res`,
`Matrix movie`,
].join(", ")
return {
action,
position,
light,
actionnables,
prompt
}
}
} |