-
Notifications
You must be signed in to change notification settings - Fork 111
Update Mar 14th #251
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
Merged
Update Mar 14th #251
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
74939d7
Update .gitignore
EricYiming 35b0dcf
Update env.ts
EricYiming 14763a7
Update .gitignore
EricYiming 8a65bf5
fixed dimension mismatch
EricYiming f27ef77
add neo4j dependency
EricYiming 2451d07
added new env
EricYiming b8dcc38
connect with neo4j
EricYiming e6a987f
update env requirement
EricYiming f3f4fe2
graph search integration working
EricYiming 914e656
minor bug fix
EricYiming d20f6a0
Merge remote-tracking branch 'origin/main' into feature/neo4j-kg-inte…
EricYiming 85c83a8
removed study buddy agent, added upload functionality
Deodat-Lawson e8df802
Merge pull request #239 from Deodat-Lawson/feature/remove-study-buddy…
Deodat-Lawson 95c1269
Merge remote-tracking branch 'origin/main' into feature/neo4j-kg-inte…
EricYiming 4f7313e
feat: add provider-aware LLM routing (OpenAI + Ollama) for document Q&A
EricLiu2795 8e7efe7
Merge pull request #235 from Deodat-Lawson/feature/neo4j-kg-integration
Deodat-Lawson fea2d50
Merge branch 'main' into feature/junkun/ollama-provider
EricLiu2795 0e2b088
fix: resolve merge issues for Ollama provider support
EricLiu2795 d788349
other model compatibility
Deodat-Lawson 9492cd6
temperature only for GPT non reasoning models
Deodat-Lawson b6bc3f2
Merge pull request #242 from Deodat-Lawson/feature/junkun/ollama-prov…
Deodat-Lawson e386004
updated legal templates
Deodat-Lawson a900add
Merge pull request #247 from Deodat-Lawson/feature/integrate-document…
Deodat-Lawson ce44618
PDR AI Rename
Deodat-Lawson 15f69e2
Merge pull request #250 from Deodat-Lawson/timothy/feature/GEO-optimi…
Deodat-Lawson 15a695b
Merge branch 'stable' into main
Deodat-Lawson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
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
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 |
|---|---|---|
|
|
@@ -46,6 +46,8 @@ yarn-error.log* | |
| .idea | ||
| /.localFiles | ||
| .windsurf/rules/markdowncreation.md | ||
| /public/vad | ||
| *.pyc | ||
|
|
||
| # kiro | ||
| .kiro | ||
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ALTER TABLE "document" ADD COLUMN "mime_type" varchar(128); |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Docker Compose YAML indentation breaks environment variables
High Severity
The new environment variables (
ANTHROPIC_API_KEY,GOOGLE_AI_API_KEY,OLLAMA_BASE_URL,OLLAMA_MODEL) appear to be outdented by 2 spaces compared to the existingenvironmentblock entries. In the diff, the existing entries (lines 65–77) are indented with 6 spaces underenvironment:, but the new lines at 78–83 use only 4 spaces, placing them at theappservice level rather than insideenvironment:. This means Docker Compose will not recognize them as environment variables.