-
Notifications
You must be signed in to change notification settings - Fork 5
Wip-bring-back-s3-mock-issue-36 #41
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
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4582939
added the progress demo back in
garland3 542dd48
chore: add .ruff_cache to .gitignore
garland3 8acc359
feat: add mock S3 option for simplified development
garland3 400b005
refactor: improve logging, exception handling, and S3 mock structure
garland3 28a05f8
docs: add critical security warnings for S3 mock server
garland3 2343ecf
refactor: improve logging messages and enhance security checks in S3 …
garland3 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,6 +1,6 @@ | ||
| *.pptx | ||
| *.jsonl | ||
|
|
||
| .ruff_cache | ||
| # Environment variables | ||
| .env | ||
| .claude | ||
|
|
||
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,65 @@ | ||
| # GEMINI.md | ||
|
|
||
| This file provides guidance to the Gemini AI agent when working with code in this repository. | ||
|
|
||
| ## Project Overview | ||
|
|
||
| Atlas UI 3 is a full-stack LLM chat interface with Model Context Protocol (MCP) integration, supporting multiple LLM providers (OpenAI, Anthropic Claude, Google Gemini), RAG, and agentic capabilities. | ||
|
|
||
| **Tech Stack:** | ||
| - Backend: FastAPI + WebSockets, LiteLLM, FastMCP | ||
| - Frontend: React 19 + Vite 7 + Tailwind CSS | ||
| - Python Package Manager: **uv** (NOT pip!) | ||
| - Configuration: Pydantic with YAML/JSON configs | ||
|
|
||
| ## Building and Running | ||
|
|
||
| ### Quick Start (Recommended) | ||
| ```bash | ||
| bash agent_start.sh | ||
| ``` | ||
| This script handles: killing old processes, clearing logs, building frontend, and starting the backend. | ||
|
|
||
| ### Manual Development Workflow | ||
|
|
||
| **Frontend Build (CRITICAL):** | ||
| ```bash | ||
| cd frontend | ||
| npm install | ||
| npm run build # Use build, NOT npm run dev (WebSocket issues) | ||
| ``` | ||
|
|
||
| **Backend Start:** | ||
| ```bash | ||
| cd backend | ||
| python main.py # NEVER use uvicorn --reload (causes problems) | ||
| ``` | ||
|
|
||
| ### Testing | ||
|
|
||
| **Run all tests:** | ||
| ```bash | ||
| ./test/run_tests.sh all | ||
| ``` | ||
|
|
||
| **Individual test suites:** | ||
| ```bash | ||
| ./test/run_tests.sh backend | ||
| ./test/run_tests.sh frontend | ||
| ./test/run_tests.sh e2e | ||
| ``` | ||
|
|
||
| ## Development Conventions | ||
|
|
||
| - **Python Package Manager**: **ALWAYS use `uv`**, never pip or conda. | ||
| - **Frontend Development**: **NEVER use `npm run dev`**, it has WebSocket connection problems. Always use `npm run build`. | ||
| - **Backend Development**: **NEVER use `uvicorn --reload`**, it causes problems. | ||
| - **File Naming**: Do not use generic names like `utils.py` or `helpers.py`. Use descriptive names that reflect the file's purpose. | ||
| - **No Emojis**: No emojis should ever be added in this repo. | ||
| - **Linting**: Run `ruff check backend/` for Python and `npm run lint` for the frontend before committing. | ||
|
|
||
|
|
||
| Also read. | ||
| /workspaces/atlas-ui-3/.github/copilot-instructions.md | ||
|
|
||
| and CLAUDE.md |
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
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.
[nitpick] The warning message could be clearer by indicating this is expected behavior when there are no files in the session context. Consider rewording to:
logger.debug(\"No files manifest generated (no files in session context)\")or adding a check to only warn if files exist but manifest wasn't generated.