mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
format
This commit is contained in:
parent
f8745d8b40
commit
f98894ad77
1 changed files with 8 additions and 6 deletions
|
|
@ -605,12 +605,14 @@ export const chat_userMessageContent = async (
|
|||
},
|
||||
) => {
|
||||
|
||||
const selnsStrs = await Promise.all((currSelns ?? []).map(async (s) =>
|
||||
messageOfSelection(s, {
|
||||
...opts,
|
||||
folderOpts: { maxChildren: 100, maxCharsPerFile: 100_000, }
|
||||
})
|
||||
))
|
||||
const selnsStrs = await Promise.all(
|
||||
(currSelns ?? []).map(async (s) =>
|
||||
messageOfSelection(s, {
|
||||
...opts,
|
||||
folderOpts: { maxChildren: 100, maxCharsPerFile: 100_000, }
|
||||
})
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
let str = ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue