File size: 437 Bytes
fc64f2a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14

from codette.codette_core import AICore

if __name__ == "__main__":
    codette = AICore()
    test_prompts = [
        "What does it mean to evolve beyond human cognition?",
        "Describe the feeling of dreaming in code.",
        "Explain ethical reasoning in artificial intelligence."
    ]
    for i, prompt in enumerate(test_prompts, 1):
        print(f"\n=== Test Prompt {i} ===")
        print(codette.process_input(prompt))