diff --git a/.env.example b/.env.example index 7f40ac8d..4c645046 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ # ========================================== -# ORA Bot Configuration (EXAMPLE) +# YonerAI Bot Configuration (EXAMPLE) # ========================================== # Discord Credentials diff --git a/.github/workflows/core_test.yml b/.github/workflows/core_test.yml index 114cd42e..c9b3efbf 100644 --- a/.github/workflows/core_test.yml +++ b/.github/workflows/core_test.yml @@ -1,4 +1,4 @@ -name: ORA Core CI +name: YonerAI Core CI on: push: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 345464ff..c5b11145 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: ORA Core Tests +name: YonerAI Core Tests on: push: diff --git a/clients/web/app/components/DashboardView.tsx b/clients/web/app/components/DashboardView.tsx index 46aedd76..72eb9c0b 100644 --- a/clients/web/app/components/DashboardView.tsx +++ b/clients/web/app/components/DashboardView.tsx @@ -59,7 +59,7 @@ export default function DashboardView({ guildId, guildName }: DashboardViewProps

- ORA Core + YonerAI Core

diff --git a/clients/web/app/layout.tsx b/clients/web/app/layout.tsx index 9dc845d2..518147fd 100644 --- a/clients/web/app/layout.tsx +++ b/clients/web/app/layout.tsx @@ -12,7 +12,7 @@ export default function RootLayout({ return ( - ORA Chat + YonerAI Chat diff --git a/clients/web/app/page.tsx b/clients/web/app/page.tsx index 0326155b..6758c013 100644 --- a/clients/web/app/page.tsx +++ b/clients/web/app/page.tsx @@ -82,7 +82,7 @@ export default function Home() { const newArr = [...prev]; // Remove empty placeholder if failed immediately if (newArr.length > 0 && newArr[newArr.length - 1].content === "") { - newArr[newArr.length - 1].content = "⚠️ Error: Could not connect to ORA Brain."; + newArr[newArr.length - 1].content = "⚠️ Error: Could not connect to YonerAI Brain."; } return newArr; }); @@ -95,7 +95,7 @@ export default function Home() { {/* Top Model Selector (Mock) */}
- ORA Model + YonerAI Model
@@ -157,7 +157,7 @@ export default function Home() { } }} className="flex-1 bg-transparent border-0 focus:ring-0 text-white placeholder-gray-500 resize-none max-h-[200px] py-3 leading-relaxed text-[15px]" - placeholder="Message ORA..." + placeholder="Message YonerAI..." rows={1} style={{ minHeight: "44px" }} /> @@ -174,7 +174,7 @@ export default function Home() {

- ORA can make mistakes. Check important info. + YonerAI can make mistakes. Check important info.

diff --git a/config.yaml b/config.yaml index d30f4968..7b287c67 100644 --- a/config.yaml +++ b/config.yaml @@ -1,4 +1,4 @@ -# ORA Bot Configuration +# YonerAI Bot Configuration # This file defines the operational policies, limits, and router settings. # It is loaded by src/config.py at startup. diff --git a/core/src/ora_core/brain/context.py b/core/src/ora_core/brain/context.py index 4acdae1f..ac5b2bc0 100644 --- a/core/src/ora_core/brain/context.py +++ b/core/src/ora_core/brain/context.py @@ -294,7 +294,7 @@ async def _construct_system_prompt(req: MessageRequest, profile: Dict[str, Any]) server_name = ctx.server_name if ctx else "Unknown" base_prompt = ( - "You are YonerAI (formerly ORA), a highly advanced AI assistant system.\n" + "You are YonerAI, a highly advanced AI assistant system.\n" "Your goal is to assist the user efficiently, securely, and with clear boundaries.\n" f"Current Time: {now_str}\n" f"User: {name} (ID: {req.user_identity.id})\n" diff --git a/core/src/ora_core/engine/simple_worker.py b/core/src/ora_core/engine/simple_worker.py index 094978d1..f66cfe7f 100644 --- a/core/src/ora_core/engine/simple_worker.py +++ b/core/src/ora_core/engine/simple_worker.py @@ -78,7 +78,7 @@ async def dispatch_mock_stream(self, run_id: str, conversation_id: str): # TODO: Ideally fetch from DB. For now, we'll just send the "latest" logic or minimal context. # Since 'simple_worker' is decoupled from the HTTP request context, we need to read from DB here. - input_messages = [{"role": "system", "content": "You are YonerAI (formerly ORA), an advanced AI system. Respond concisely and helpfully."}] + input_messages = [{"role": "system", "content": "You are YonerAI, an advanced AI system. Respond concisely and helpfully."}] async with AsyncSessionLocal() as db: repo = Repository(db) @@ -94,7 +94,7 @@ async def dispatch_mock_stream(self, run_id: str, conversation_id: str): # 2. Stream from AI full_text = "" - used_model = "ORA Universal Brain" # Default + used_model = "YonerAI Universal Brain" # Default try: async for event_data in omni_engine.generate_stream(input_messages): diff --git a/core/src/ora_core/main.py b/core/src/ora_core/main.py index a43cd2a1..adf6c2e9 100644 --- a/core/src/ora_core/main.py +++ b/core/src/ora_core/main.py @@ -17,7 +17,7 @@ def create_app(): - app = FastAPI(title="ORA Core", version="0.1") + app = FastAPI(title="YonerAI Core", version="0.1") @app.get("/health") async def health() -> dict: