(
id: string,
input: { providerID: string; modelID: string; variant?: string },
)
| 81 | ] |
| 82 | |
| 83 | function userMessage( |
| 84 | id: string, |
| 85 | input: { providerID: string; modelID: string; variant?: string }, |
| 86 | ): SessionMessages[number] { |
| 87 | return { |
| 88 | info: { |
| 89 | id, |
| 90 | sessionID: "session-1", |
| 91 | role: "user", |
| 92 | time: { |
| 93 | created: 1, |
| 94 | }, |
| 95 | agent: "build", |
| 96 | model: input, |
| 97 | }, |
| 98 | parts: [], |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | const it = testEffect(Layer.mergeAll(LayerNode.compile(FSUtil.node), NodeFileSystem.layer)) |
| 103 |
no outgoing calls
no test coverage detected