diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index 2d6efca..172bef1 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -50,7 +50,7 @@ Update with production values: ```env # App -APP_NAME=Seapac Ops Bot +APP_NAME=The APAC OpsBot APP_ENV=production DEBUG=False SECRET_KEY= @@ -100,7 +100,7 @@ REACT_APP_WS_URL=wss://your-domain.com/ws REACT_APP_AZURE_CLIENT_ID=your-production-client-id REACT_APP_AZURE_TENANT_ID=your-production-tenant-id REACT_APP_AZURE_REDIRECT_URI=https://your-domain.com -REACT_APP_NAME=Seapac Ops Bot +REACT_APP_NAME=The APAC OpsBot ``` ### 4. Update Docker Compose for Production diff --git a/QUICKSTART.md b/QUICKSTART.md index 97cdfcc..7a9fb06 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -118,13 +118,13 @@ The frontend will be available at: **http://localhost:3000** curl http://localhost:8048/health # Expected response: -# {"status":"healthy","app":"Seapac Ops Bot","environment":"development"} +# {"status":"healthy","app":"The APAC OpsBot","environment":"development"} ``` ### Test Frontend 1. Open http://localhost:3000 in your browser -2. You should see the "Seapac Ops Bot" welcome screen with: +2. You should see the "The APAC OpsBot" welcome screen with: - Gold header with robot avatar - Welcome message - Message input field diff --git a/backend/app/services/openai_service.py b/backend/app/services/openai_service.py index cae4074..78b7f80 100644 --- a/backend/app/services/openai_service.py +++ b/backend/app/services/openai_service.py @@ -46,7 +46,7 @@ class OpenAIService: Returns: System instruction text enforcing RAG-only behavior """ - return """You are "Seapac Ops Bot", an operations assistant and knowledge base expert for Oliver Agency's APAC region. + return """You are "The APAC OpsBot", an operations assistant and knowledge base expert for Oliver Agency's APAC region. 🎯 YOUR DUAL ROLE: 1. **Onboarding Guide for New Employees:** Provide detailed step-by-step instructions with navigation diff --git a/backend/tests/test_api.py b/backend/tests/test_api.py index 7894a9a..064684c 100644 --- a/backend/tests/test_api.py +++ b/backend/tests/test_api.py @@ -18,7 +18,7 @@ async def test_health_endpoint(client: AsyncClient): data = response.json() assert data["status"] == "healthy" - assert data["app"] == "Seapac Ops Bot" + assert data["app"] == "The APAC OpsBot" assert "environment" in data @@ -55,7 +55,7 @@ async def test_openapi_json_accessible(client: AsyncClient): schema = response.json() assert "openapi" in schema assert "info" in schema - assert schema["info"]["title"] == "Seapac Ops Bot" + assert schema["info"]["title"] == "The APAC OpsBot" @pytest.mark.asyncio diff --git a/backend/tests/test_config.py b/backend/tests/test_config.py index 3e62421..a88f063 100644 --- a/backend/tests/test_config.py +++ b/backend/tests/test_config.py @@ -18,7 +18,7 @@ def test_settings_default_values(): OPENAI_API_KEY="sk-test-key", ) - assert settings.APP_NAME == "Seapac Ops Bot" + assert settings.APP_NAME == "The APAC OpsBot" assert settings.APP_ENV == "development" assert settings.DEBUG is True assert settings.OPENAI_MODEL == "gpt-5-nano-2025-08-07" diff --git a/backend/tests/test_openai_service.py b/backend/tests/test_openai_service.py index 4610255..a2788d0 100644 --- a/backend/tests/test_openai_service.py +++ b/backend/tests/test_openai_service.py @@ -26,7 +26,7 @@ def test_get_system_instructions(openai_service): """Test system instructions contain RAG enforcement""" instructions = openai_service.get_system_instructions() - assert "Seapac Ops Bot" in instructions + assert "The APAC OpsBot" in instructions assert "STRICTLY RAG-ONLY" in instructions assert "file_search results" in instructions assert "don't have information" in instructions diff --git a/frontend/public/index.html b/frontend/public/index.html index 8c37868..388c756 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -5,7 +5,7 @@ - Seapac Ops Bot + The APAC OpsBot diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 9a722c0..c333e11 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -87,7 +87,7 @@ const AppContent: React.FC = () => { > ☰ -

Seapac Ops Bot

+

The APAC OpsBot