-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: bugs #818
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
LOGAF Level 2 - /home/runner/work/quivr/quivr/backend/core/routes/upload_routes.py
Example: from settings import MAX_BRAIN_SIZE_WITH_KEY
# ... later in the code ...
brain.max_brain_size = int(MAX_BRAIN_SIZE_WITH_KEY) LOGAF Level 3 - /home/runner/work/quivr/quivr/frontend/lib/components/NavBar/components/NavItems/index.tsx
Example: if (isUserLoggedIn) {
return <LoggedInNavItems />;
}
return <LoggedOutNavItems />;
LOGAF Level 2 - /home/runner/work/quivr/quivr/frontend/app/brains-management/[brainId]/components/BrainManagementTabs/components/SettingsTab/hooks/useSettingsTab.ts
Example: useEffect(() => {
// code here
}, [dependency1, dependency2]); 🔧🔒🧩 Powered by Code Review GPT |
* feat: add chat config modal * feat: save chat config in localStorage * feat: remove <ConfigPage/> * feat: overwrite chat config with brain * fix(SettingsPage): upload payload keys * fix: update default brain marker logic * feat: set new created brain as current selected brain
Description