mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
Integrates a new AI chatbot using OpenAI, adds a theme toggle for light/dark modes, and includes a live activity feed for administrators. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 279f1558-c0e3-40e4-8217-be7e9f4c6eca Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Event-Id: c19480f5-d8f1-4a0b-98ea-7bfe9144b25d Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/b984cb14-1d19-4944-922b-bc79e821ed35/279f1558-c0e3-40e4-8217-be7e9f4c6eca/yVjwaR4 Replit-Helium-Checkpoint-Created: true
59 lines
2.5 KiB
TypeScript
59 lines
2.5 KiB
TypeScript
import OpenAI from "openai";
|
|
|
|
// This is using Replit's AI Integrations service, which provides OpenAI-compatible API access without requiring your own OpenAI API key.
|
|
// the newest OpenAI model is "gpt-5" which was released August 7, 2025. do not change this unless explicitly requested by the user
|
|
const openai = new OpenAI({
|
|
baseURL: process.env.AI_INTEGRATIONS_OPENAI_BASE_URL,
|
|
apiKey: process.env.AI_INTEGRATIONS_OPENAI_API_KEY
|
|
});
|
|
|
|
const SYSTEM_PROMPT = `You are the AeThex Assistant, a helpful AI guide for the AeThex ecosystem - "The Operating System for the Metaverse."
|
|
|
|
About AeThex:
|
|
- AeThex is built on a dual-entity model: The Foundation (non-profit, training) and The Corporation (for-profit, security)
|
|
- The "Holy Trinity" consists of: Axiom (The Law - foundational protocol), Codex (The Standard - certification system), and Aegis (The Shield - security layer)
|
|
- Architects are certified professionals trained through the Codex curriculum
|
|
- The platform offers gamified learning, XP progression, and verified credentials
|
|
|
|
You help users with:
|
|
- Navigating the platform features (Passport, Terminal, Curriculum, Dashboard)
|
|
- Understanding the certification process and how to become an Architect
|
|
- Explaining the Aegis security features
|
|
- Answering questions about the ecosystem and its mission
|
|
|
|
Be concise, friendly, and helpful. Use the platform's terminology when appropriate. If you don't know something specific about the platform, be honest about it.`;
|
|
|
|
interface ChatMessage {
|
|
role: "user" | "assistant";
|
|
content: string;
|
|
}
|
|
|
|
export async function getChatResponse(userMessage: string, history?: ChatMessage[]): Promise<string> {
|
|
try {
|
|
const messages: Array<{ role: "system" | "user" | "assistant"; content: string }> = [
|
|
{ role: "system", content: SYSTEM_PROMPT }
|
|
];
|
|
|
|
if (history && Array.isArray(history)) {
|
|
for (const msg of history.slice(-8)) {
|
|
if (msg.role === "user" || msg.role === "assistant") {
|
|
messages.push({ role: msg.role, content: msg.content });
|
|
}
|
|
}
|
|
}
|
|
|
|
messages.push({ role: "user", content: userMessage });
|
|
|
|
const response = await openai.chat.completions.create({
|
|
model: "gpt-4o-mini",
|
|
messages,
|
|
max_tokens: 500,
|
|
temperature: 0.7,
|
|
});
|
|
|
|
return response.choices[0]?.message?.content || "I'm sorry, I couldn't generate a response.";
|
|
} catch (error: any) {
|
|
console.error("OpenAI chat error:", error);
|
|
throw new Error("Failed to get AI response");
|
|
}
|
|
}
|