This repository was archived by the owner on Mar 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
102 lines (101 loc) · 3.79 KB
/
Copy pathdata.json
File metadata and controls
102 lines (101 loc) · 3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"import": "random",
"functions": {
"newton_thoughts": {
"description": "Newton's laws applied to thinking",
"parameters": ["question"],
"returns": "force_of_thought",
"calls": ["apply_newtons_laws"]
},
"apply_newtons_laws": {
"parameters": ["question"],
"returns": "Thought force",
"logic": [
"if not question: return 'No question to think about.'",
"complexity = len(question)",
"force = mass_of_thought(question) * acceleration_of_thought(complexity)",
"return f'Thought force: {force}'"
]
},
"mass_of_thought": {
"parameters": ["question"],
"returns": "len(question)"
},
"acceleration_of_thought": {
"parameters": ["complexity"],
"returns": "complexity / 2"
},
"davinci_insights": {
"description": "Da Vinci's cosmic curiosity",
"parameters": ["question"],
"returns": "perspectives",
"calls": ["think_like_davinci"]
},
"think_like_davinci": {
"parameters": ["question"],
"returns": "random.choice(perspectives)",
"perspectives": [
"What if we view '{question}' from the perspective of the stars?",
"Consider '{question}' as if it's a masterpiece of the universe.",
"Reflect on '{question}' through the lens of nature's design."
]
},
"human_intuition": {
"description": "Human Intuition",
"parameters": ["question"],
"returns": "random.choice(intuition)",
"intuition": [
"How does this question make you feel?",
"What emotional connection do you have with this topic?",
"What does your gut instinct tell you about this?"
]
},
"neural_network_thinking": {
"description": "Neural Networks (AI perspective)",
"parameters": ["question"],
"returns": "random.choice(neural_perspectives)",
"neural_perspectives": [
"Process '{question}' through a multi-layered neural network.",
"Apply deep learning to uncover hidden insights about '{question}'.",
"Use machine learning to predict patterns in '{question}'."
]
},
"quantum_computing_thinking": {
"description": "Quantum Computing (cutting-edge technology)",
"parameters": ["question"],
"returns": "random.choice(quantum_perspectives)",
"quantum_perspectives": [
"Consider '{question}' using quantum superposition principles.",
"Apply quantum entanglement to find connections in '{question}'.",
"Utilize quantum computing to solve '{question}' more efficiently."
]
},
"resilient_kindness": {
"description": "Resilient Kindness",
"parameters": ["question"],
"returns": "random.choice(kindness_perspectives)",
"kindness_perspectives": [
"Despite losing everything, seeing life as a chance to grow.",
"Finding strength in kindness after facing life's hardest trials.",
"Embracing every challenge as an opportunity for growth and compassion."
]
},
"universal_reasoning": {
"description": "Universal reasoning with all perspectives",
"parameters": ["question"],
"returns": "combined_responses",
"calls": [
"newton_thoughts",
"davinci_insights",
"human_intuition",
"neural_network_thinking",
"quantum_computing_thinking",
"resilient_kindness"
]
}
},
"example_use": {
"question": "Why do humans think the way they do?",
"answer": "universal_reasoning(question)"
}
}