-
Notifications
You must be signed in to change notification settings - Fork 183
feat: add filter for query in ts templates #172
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
Merged
marcusschiesser
merged 17 commits into
main
from
feat/add-filter-for-query-in-ts-template
Jul 22, 2024
Merged
Changes from 5 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
1f9fd98
feat: add filter for query in ts templates
thucpn 3b9a478
fix: use != operator to filter public documents
thucpn 059bc1a
Create curvy-penguins-work.md
thucpn 4e24075
feat: use next config without withLlamaIndex for fullstack template
thucpn ae3be5d
download llamacloud file from nodes
thucpn 6bdffd2
fix: add private to metadata when generating docs
thucpn e736814
fix: only download when file length > 0
thucpn c04438f
feat: support filter and download private doc from llamacloud
thucpn a6d3e89
refactor: remove is_local_file when generate or upload
thucpn 2261863
fix: remove async and do not get file url by is_local_file
thucpn dfecff9
refactor: detach private and public filter
thucpn 41861bb
refactor: check private null for llamacloud datasource files
thucpn cd0ca41
fix: use nin for filtering public docs in Python
thucpn 614a92f
feat: append doc_id for metadata
thucpn c3322dc
don't need to doc_id because it's always in vector_store
thucpn 0f14302
fix: removed unused code
marcusschiesser 60c7479
fix: next.config
marcusschiesser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"create-llama": patch | ||
--- | ||
|
||
add filter for query in ts templates |
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
/** @type {import('next').NextConfig} */ | ||
import fs from "fs"; | ||
import withLlamaIndex from "llamaindex/next"; | ||
import webpack from "./webpack.config.mjs"; | ||
|
||
const nextConfig = JSON.parse(fs.readFileSync("./next.config.json", "utf-8")); | ||
nextConfig.webpack = webpack; | ||
|
||
export default nextConfig; | ||
export default withLlamaIndex(nextConfig); | ||
marcusschiesser marked this conversation as resolved.
Show resolved
Hide resolved
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** @type {import('next').NextConfig} */ | ||
import fs from "fs"; | ||
import webpack from "./webpack.config.mjs"; | ||
|
||
const nextConfig = JSON.parse(fs.readFileSync("./next.config.json", "utf-8")); | ||
nextConfig.webpack = webpack; | ||
|
||
export default nextConfig; |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.