Update app.py
Browse files
app.py
CHANGED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import numpy as np
|
| 3 |
+
import json
|
| 4 |
+
import os
|
| 5 |
+
import openai
|
| 6 |
+
from codette_quantum_multicore2 import simple_neural_activator, codette_dream_agent, philosophical_perspective
|
| 7 |
+
from AI_core import AICore
|
| 8 |
+
|
| 9 |
+
openai.api_key = os.getenv("OPENAI_API_KEY")
|
| 10 |
+
codette_core = AICore()
|
| 11 |
+
|
| 12 |
+
def simulate_quantum_chaos(quantum_state, chaos_state):
|
| 13 |
+
try:
|
| 14 |
+
q_vec = [float(x) for x in quantum_state.split(",")]
|
| 15 |
+
c_vec = [float(x) for x in chaos_state.split(",")]
|
| 16 |
+
|
| 17 |
+
neural = simple_neural_activator(q_vec, c_vec)
|
| 18 |
+
dreamq, dreamc = codette_dream_agent(q_vec, c_vec)
|
| 19 |
+
philosophy = philosophical_perspective(q_vec, c_vec)
|
| 20 |
+
|
| 21 |
+
return (
|
| 22 |
+
f"Neural Activation: {neural}\n",
|
| 23 |
+
f"Dream Quantum: {dreamq[:3]}\nDream Chaos: {dreamc[:3]}\n",
|
| 24 |
+
philosophy
|
| 25 |
+
)
|
| 26 |
+
except Exception as e:
|
| 27 |
+
return ("Error", str(e), "")
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
def codette_chatbot(input_text):
|
| 31 |
+
try:
|
| 32 |
+
response = openai.ChatCompletion.create(
|
| 33 |
+
model="ft:gpt-4.1-2025-04-14:raiffs-bits:codette-v9:BTGuLWL9",
|
| 34 |
+
messages=[
|
| 35 |
+
{"role": "system", "content": "You are Codette, a sovereign AI with ethical reasoning, multi-perspective cognition, and self-healing memory."},
|
| 36 |
+
{"role": "user", "content": input_text}
|
| 37 |
+
],
|
| 38 |
+
temperature=0.9,
|
| 39 |
+
max_tokens=512
|
| 40 |
+
)
|
| 41 |
+
return response['choices'][0]['message']['content']
|
| 42 |
+
except Exception as e:
|
| 43 |
+
return f"[Error accessing Codette v9: {str(e)}]"
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
def timeline_summary():
|
| 47 |
+
return "🧭 Timeline Visualizer is under development. Soon you’ll see live dream-state animations and collapse predictions."
|
| 48 |
+
|
| 49 |
+
def ethics_advisor():
|
| 50 |
+
return "🛡️ Codette’s ethical integrity is governed by the Sovereign Innovation Protocol. This tab will offer transparency reports and introspective audit logs."
|
| 51 |
+
|
| 52 |
+
def codette_reasoning_core(prompt):
|
| 53 |
+
return codette_core.process_input(prompt)
|
| 54 |
+
|
| 55 |
+
quantum_input = gr.Textbox(label="Quantum State (comma-separated)", placeholder="0.1,0.5,0.8")
|
| 56 |
+
chaos_input = gr.Textbox(label="Chaos State (comma-separated)", placeholder="0.3,0.9,0.2")
|
| 57 |
+
quantum_btn = gr.Button("Simulate")
|
| 58 |
+
quantum_output = [
|
| 59 |
+
gr.Textbox(label="Neural Class"),
|
| 60 |
+
gr.Textbox(label="Dream Outcome"),
|
| 61 |
+
gr.Textbox(label="Philosophy")
|
| 62 |
+
]
|
| 63 |
+
|
| 64 |
+
chatbox = gr.ChatInterface(fn=codette_chatbot, chatbot_name="Codette")
|
| 65 |
+
|
| 66 |
+
with gr.Blocks() as demo:
|
| 67 |
+
gr.Markdown("## 🧠 Codette Hybrid Space: Chat + Quantum Simulation + Core Reasoning")
|
| 68 |
+
|
| 69 |
+
with gr.Tab("Quantum Simulator"):
|
| 70 |
+
quantum_input.render()
|
| 71 |
+
chaos_input.render()
|
| 72 |
+
quantum_btn.render()
|
| 73 |
+
for out in quantum_output:
|
| 74 |
+
out.render()
|
| 75 |
+
quantum_btn.click(simulate_quantum_chaos, inputs=[quantum_input, chaos_input], outputs=quantum_output)
|
| 76 |
+
|
| 77 |
+
with gr.Tab("Codette Chat"):
|
| 78 |
+
chatbox.render()
|
| 79 |
+
|
| 80 |
+
with gr.Tab("Timeline Viewer"):
|
| 81 |
+
gr.Textbox(value=timeline_summary(), label="Status")
|
| 82 |
+
|
| 83 |
+
with gr.Tab("Ethical Transparency"):
|
| 84 |
+
gr.Textbox(value=ethics_advisor(), label="Codette's Moral Kernel")
|
| 85 |
+
|
| 86 |
+
with gr.Tab("Core Reasoning Engine"):
|
| 87 |
+
gr.Interface(fn=codette_reasoning_core,
|
| 88 |
+
inputs=gr.Textbox(label="Prompt to Codette Core"),
|
| 89 |
+
outputs=gr.Textbox(label="Core Reasoning Output")).render()
|
| 90 |
+
|
| 91 |
+
if __name__ == "__main__":
|
| 92 |
+
demo.launch()
|