(id: string)
| 62 | } |
| 63 | |
| 64 | function userInfo(id: string): SessionV1.User { |
| 65 | return { |
| 66 | id, |
| 67 | sessionID, |
| 68 | role: "user", |
| 69 | time: { created: 0 }, |
| 70 | agent: "user", |
| 71 | model: { providerID, modelID: ModelV2.ID.make("test") }, |
| 72 | tools: {}, |
| 73 | mode: "", |
| 74 | } as unknown as SessionV1.User |
| 75 | } |
| 76 | |
| 77 | function assistantInfo( |
| 78 | id: string, |
no test coverage detected