Skip to content

Commit

Permalink
Merge pull request #22 from tkhv/document_handler
Browse files Browse the repository at this point in the history
testing document embeddings
  • Loading branch information
Junhaeng7 authored Dec 5, 2023
2 parents 9f5e077 + f56a8a3 commit e371604
Show file tree
Hide file tree
Showing 6 changed files with 1,476 additions and 69 deletions.
2 changes: 1 addition & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Navbar = () => {
const { data: session } = useSession();
const username = session?.user.name;
const imageURL = session?.user.image;
const courseList = session?.user.courseList || [];
const courseList = session?.user.courseList || ["cs4400"];

const pathName = useRouter();

Expand Down
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/** @type {import('next').NextConfig} */

const nextConfig = {
reactStrictMode: true,
output: "standalone",
Expand Down
Loading

0 comments on commit e371604

Please sign in to comment.