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.
Add local inference support and improve Neo4j troubleshooting #5
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
base: main
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
Add local inference support and improve Neo4j troubleshooting #5
Changes from 9 commits
eb5111ff5360d85bcde571bfde1eb376160aba3ee926ed918c955fe52b63b0f7a51cd2File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing
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.
The
neo4j-localtroubleshooting guidance says the password is “Generated automatically (check logs)” and references~/.local/share/neo4j-local/default, but the existingdocs/docs/how-to/use-neo4j-local.mdstates default credentials areneo4j/neo4jand points to a different data directory (usually~/.neo4j-local/data/). Please align these instructions with the documented behavior used elsewhere in the repo to avoid sending users to the wrong reset location / credentials.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.
@copilot apply changes based on this feedback
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.
A new CLI option
--anthropic-base-urlis introduced here, but the CLI test suite currently has coverage for--google-api-keyand--openai-api-keyflowing into the rendered.env(seetests/test_cli.py). Consider adding a similar test to assertANTHROPIC_BASE_URL=...is present in the generated.envwhen this flag is provided, to prevent regressions in local inference support.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.
@copilot apply changes based on this feedback
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.
@copilot apply changes based on this feedback
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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.prod.ymlonly includesANTHROPIC_BASE_URLwhenanthropic_base_urlwas set at scaffold time. This prevents enabling a local endpoint later by settingANTHROPIC_BASE_URLin the environment, because Compose won’t pass it through at all. Since other keys (e.g.,OPENAI_API_KEY) are always wired through regardless of whether they were set during generation, consider always includingANTHROPIC_BASE_URL: ${ANTHROPIC_BASE_URL:-}(or similar) when an Anthropic-based framework is selected.Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.