Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ The system supports Retrieval-Augmented Generation (RAG) for enhanced knowledge
The easiest way to use the AI Development Agent is through the Streamlit web interface:

```bash
streamlit run streamlit_app.py
streamlit run apps/streamlit_app.py
```

This will start the web application at `http://localhost:8501` where you can:
Expand Down Expand Up @@ -736,7 +736,9 @@ ai-dev-agent/
├── prompts/ # Prompt management
│ ├── agent_prompt_loader.py # Agent prompt loading system
│ └── __init__.py # Prompt module initialization
├── streamlit_app.py # Streamlit web interface
├── apps/
│ ├── streamlit_app.py # Main Streamlit web interface
│ └── prompt_manager_app.py # Prompt management interface
├── main.py # Main application entry point
├── requirements.txt # Python dependencies
├── secrets.toml # API keys and secrets (create this)
Expand Down
10 changes: 10 additions & 0 deletions apps/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""
Applications package for AI Development Agent.

This package contains the user interface applications:
- streamlit_app.py: Main AI Development Agent interface
- prompt_manager_app.py: Prompt and RAG document management interface
"""

__version__ = "1.0.0"
__author__ = "AI Development Agent Team"
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -93,21 +93,21 @@ python tests/organize_tests.py --generate-index

### 2. Setup Script

**File**: `scripts/setup_test_environment.py`
**File**: `tests/setup_test_environment.py`

**Commands**:
```bash
# Setup complete test environment
python scripts/setup_test_environment.py --setup
python tests/setup_test_environment.py --setup

# Validate test organization
python scripts/setup_test_environment.py --validate
python tests/setup_test_environment.py --validate

# Run all tests
python scripts/setup_test_environment.py --run-tests
python tests/setup_test_environment.py --run-tests

# Show help
python scripts/setup_test_environment.py --help-info
python tests/setup_test_environment.py --help-info
```

### 3. Pytest Configuration
Expand Down Expand Up @@ -213,7 +213,7 @@ The following files are **explicitly excluded** from the test organization rule:

1. **Setup test environment**:
```bash
python scripts/setup_test_environment.py --setup
python tests/setup_test_environment.py --setup
```

2. **Read the rules**:
Expand Down Expand Up @@ -249,7 +249,7 @@ The following files are **explicitly excluded** from the test organization rule:

- **Detailed Rules**: `tests/TEST_ORGANIZATION_RULES.md`
- **Test Index**: `tests/TEST_INDEX.md` (auto-generated)
- **Setup Help**: `python scripts/setup_test_environment.py --help-info`
- **Setup Help**: `python tests/setup_test_environment.py --help-info`
- **Validation**: `python tests/organize_tests.py --validate`

## Conclusion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def show_test_help(self):
- tests/security/ - Security and vulnerability tests

Commands:
- python scripts/setup_test_environment.py --setup
- python tests/setup_test_environment.py --setup
- python tests/organize_tests.py --validate
- python tests/organize_tests.py --create-structure
- pytest tests/ --cov=. --cov-report=html
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_enhanced_structured_outputs.py

This file was deleted.

1 change: 0 additions & 1 deletion tests/unit/test_generated_files_fix.py

This file was deleted.

Loading