mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-12 11:26:07 +03:00
0dd1d12e6a
This pull request adds a new config parameter to the `conversational_qa_chain` function. The config parameter allows for passing metadata, specifically the conversation ID, to the function. This change ensures that the conversation ID is included in the metadata when invoking the `conversational_qa_chain` function.
13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
export const useAuthModes = () => {
|
|
const authModes = process.env.NEXT_PUBLIC_AUTH_MODES?.split(",") ?? [
|
|
"password",
|
|
];
|
|
|
|
return {
|
|
magicLink: authModes.includes("magic_link"),
|
|
password: authModes.includes("password"),
|
|
googleSso: authModes.includes("google_sso"),
|
|
};
|
|
};
|