(text:string, numChars:number = 1000)
| 24 | type: string |
| 25 | }) { |
| 26 | const es = new EventSource(`${DOMAIN}/chat/${type}`, { |
| 27 | headers: { |
| 28 | 'Content-Type': 'application/json', |
| 29 | ...headers |
| 30 | }, |
| 31 | method: 'POST', |
| 32 | body: JSON.stringify(body), |
| 33 | }) |
| 34 |