Created
December 15, 2023 17:44
-
-
Save flexchar/b0f0cdb61630991dd655d49f174cfd1a to your computer and use it in GitHub Desktop.
Mystery and misery of async await - it's supposed to be only syntactic sugar, right? Why??
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useChat } from '~composables/useChat'; | |
import { useToken } from '~composables/useToken'; | |
import { useUser } from '~composables/useUser'; | |
import { useCompletion as useCompletionVercel } from 'ai/vue'; | |
import { ref } from 'vue'; | |
export async function useCompletion() { | |
async function init() { | |
const { token, workerHost } = await useToken(); | |
const { chat } = await useChat(); | |
const { getHeadersForRequest } = await useUser(); | |
const completionId = ref(''); | |
const { complete, completion, isLoading } = useCompletionVercel({ | |
api: `${workerHost}/api/of/completion`, | |
body: chat, | |
headers: { | |
Authorization: `Bearer ${token.value}`, | |
...getHeadersForRequest(), | |
}, | |
onResponse(response) { | |
// Extract X-Completion-Id header from response and store it in currentId | |
const headers = response.headers; | |
const id = headers.get('X-Completion-Id'); | |
completionId.value = id; | |
}, | |
}); | |
return { | |
completionId, | |
completion, | |
complete, | |
isLoading, | |
}; | |
} | |
return { | |
init, | |
}; | |
} | |
// On init() throws: | |
// use-swrv.ts:168 Could not get current instance, check to make sure that `useSwrv` is declared in the top level of the setup function. | |
// Uncaught (in promise) TypeError: Cannot destructure property 'data' of 'useSWRV2(...)' as it is null. | |
at useCompletion (use-completion.ts:77:11) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useChat } from '~composables/useChat'; | |
import { useToken } from '~composables/useToken'; | |
import { useUser } from '~composables/useUser'; | |
import { useCompletion as useCompletionVercel } from 'ai/vue'; | |
import { ref } from 'vue'; | |
export async function useCompletion() { | |
const { token, workerHost } = await useToken(); | |
const { chat } = await useChat(); | |
const { getHeadersForRequest } = await useUser(); | |
function init() { | |
const completionId = ref(''); | |
const { complete, completion, isLoading } = useCompletionVercel({ | |
api: `${workerHost}/api/of/completion`, | |
body: chat, | |
headers: { | |
Authorization: `Bearer ${token.value}`, | |
...getHeadersForRequest(), | |
}, | |
onResponse(response) { | |
// Extract X-Completion-Id header from response and store it in currentId | |
const headers = response.headers; | |
const id = headers.get('X-Completion-Id'); | |
completionId.value = id; | |
}, | |
}); | |
return { | |
completionId, | |
completion, | |
complete, | |
isLoading, | |
}; | |
} | |
return { | |
init, | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment