Skip to content
Open
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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ==========================================
# ORA Bot Configuration (EXAMPLE)
# YonerAI Bot Configuration (EXAMPLE)
# ==========================================

# Discord Credentials
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ORA Core CI
name: YonerAI Core CI

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ORA Core Tests
name: YonerAI Core Tests

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion clients/web/app/components/DashboardView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function DashboardView({ guildId, guildName }: DashboardViewProps
<div className="max-w-7xl mx-auto flex justify-between items-center mb-12">
<div>
<h1 className="text-4xl font-black text-white tracking-widest uppercase italic">
ORA <span className="text-cyan-500 font-light">Core</span>
YonerAI <span className="text-cyan-500 font-light">Core</span>
</h1>
<div className="flex items-center gap-2 mt-1">
<span className="w-2 h-2 bg-green-500 rounded-full animate-pulse"></span>
Expand Down
2 changes: 1 addition & 1 deletion clients/web/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function RootLayout({
return (
<html lang="en">
<head>
<title>ORA Chat</title>
<title>YonerAI Chat</title>
</head>
<body className={`${inter.className} flex h-screen w-screen bg-[#212121] text-gray-100`}>

Expand Down
8 changes: 4 additions & 4 deletions clients/web/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
Expand All @@ -95,7 +95,7 @@ export default function Home() {

{/* Top Model Selector (Mock) */}
<div className="w-full flex items-center justify-between p-4 md:hidden">
<span className="font-bold text-gray-200">ORA Model</span>
<span className="font-bold text-gray-200">YonerAI Model</span>
<PlusIcon />
</div>

Expand Down Expand Up @@ -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" }}
/>
Expand All @@ -174,7 +174,7 @@ export default function Home() {
</button>
</div>
<p className="text-center text-[11px] text-gray-500 mt-3 font-medium tracking-wide">
ORA can make mistakes. Check important info.
YonerAI can make mistakes. Check important info.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion core/src/ora_core/brain/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions core/src/ora_core/engine/simple_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion core/src/ora_core/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading