-
-
Notifications
You must be signed in to change notification settings - Fork 541
feat(docker): decouple NestBot service with separate container #3939
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
Open
Ani07-05
wants to merge
15
commits into
OWASP:feature/nestbot-ai-assistant
Choose a base branch
from
Ani07-05:feature/nestbot-ai-assistant
base: feature/nestbot-ai-assistant
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+357
−790
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5b83548
feat(docker): decouple NestBot service with separate container (#3865)
Ani07-05 f1c4a57
coderabbit suggestions
Ani07-05 faa45dc
fix(docker): address CodeRabbit review suggestions and improve servic…
Ani07-05 a956b96
coderabbit and cubic dev suggestions
Ani07-05 8391621
add NestBot service with dedicated Dockerfile and update dependencies
Ani07-05 a09d9ab
coderabbit suggestions
Ani07-05 4c5e926
Lazy load AI imports, commit poetry.lock, revert healthcheck
Ani07-05 0640077
Update code
rudransh-shrivastava 7c2dd9a
remove langchain, langchain-community, and langgraph
rudransh-shrivastava 6986ee0
Update code
rudransh-shrivastava c67cb5a
add nestbot to clean-backend-docker
rudransh-shrivastava f35cc5e
Update code
rudransh-shrivastava 4d32506
Update code
rudransh-shrivastava afeb675
use exec-nestbot-command
rudransh-shrivastava 90c1b9e
fix tests
rudransh-shrivastava 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
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,51 +1,51 @@ | ||
| ai-run-agentic-rag: | ||
| @echo "Running agentic RAG" | ||
| @CMD="python manage.py ai_run_agentic_rag" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_run_agentic_rag" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-chapter-chunks: | ||
| @echo "Updating chapter chunks" | ||
| @CMD="python manage.py ai_update_chapter_chunks" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_chapter_chunks" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-chapter-context: | ||
| @echo "Updating chapter context" | ||
| @CMD="python manage.py ai_update_chapter_context" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_chapter_context" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-committee-chunks: | ||
| @echo "Updating committee chunks" | ||
| @CMD="python manage.py ai_update_committee_chunks" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_committee_chunks" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-committee-context: | ||
| @echo "Updating committee context" | ||
| @CMD="python manage.py ai_update_committee_context" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_committee_context" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-event-chunks: | ||
| @echo "Updating event chunks" | ||
| @CMD="python manage.py ai_update_event_chunks" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_event_chunks" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-event-context: | ||
| @echo "Updating event context" | ||
| @CMD="python manage.py ai_update_event_context" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_event_context" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-project-chunks: | ||
| @echo "Updating project chunks" | ||
| @CMD="python manage.py ai_update_project_chunks" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_project_chunks" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-project-context: | ||
| @echo "Updating project context" | ||
| @CMD="python manage.py ai_update_project_context" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_project_context" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-repository-chunks: | ||
| @echo "Updating repository chunks" | ||
| @CMD="python manage.py ai_update_repository_chunks" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_repository_chunks" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-repository-context: | ||
| @echo "Updating repository context" | ||
| @CMD="python manage.py ai_update_repository_context" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_repository_context" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-slack-message-chunks: | ||
| @echo "Updating Slack message chunks" | ||
| @CMD="python manage.py ai_update_slack_message_chunks" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_slack_message_chunks" $(MAKE) exec-nestbot-command | ||
|
|
||
| ai-update-slack-message-context: | ||
| @echo "Updating Slack message context" | ||
| @CMD="python manage.py ai_update_slack_message_context" $(MAKE) exec-backend-command | ||
| @CMD="python manage.py ai_update_slack_message_context" $(MAKE) exec-nestbot-command |
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.
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.