//native
type Vectara = {
apiKey: string
}
/**
* Simple Single Corpus Query
* Search a single corpus with a straightforward query request, specifying the corpus key and query parameters.
*/
export async function main(
auth: Vectara,
corpus_key: string,
query: string | undefined,
limit: string | undefined,
offset: string | undefined
) {
const url = new URL(`https://api.vectara.io/v2/corpora/${corpus_key}/query`)
for (const [k, v] of [
['query', query],
['limit', limit],
['offset', offset]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
'x-api-key': auth.apiKey
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 581 days ago