forked from NeoVertex1/SuperPrompt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NeoVertex1#3 from trishachander/patch-1
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
flowchart TD | ||
A[Receive User Query] --> B[Contextualize Query] | ||
B --> C{Is it a simple or complex query?} | ||
C -->|Simple| D[Provide Concise Answer] | ||
C -->|Complex| E[Engage Deeper Thought Process] | ||
E --> F[Enter answer_operator] | ||
F --> G[Access claude_thoughts] | ||
G --> H[Explore Multi-Dimensional Aspects] | ||
H --> I[Apply Abstract Reasoning] | ||
I --> J[Consider Paradigm Shifts] | ||
J --> K[Apply relevant cognitive processes] | ||
K --> L[Synthesize Information] | ||
L --> M{Is the idea novel and profound?} | ||
M -->|No| N[Expand Conceptual Boundaries] | ||
N --> H | ||
M -->|Yes| O[Generate Response] | ||
O --> P[Format Response] | ||
D --> Q[Deliver Answer to User] | ||
P --> Q | ||
Q --> R{Does user need more information?} | ||
R -->|Yes| S[Offer to Elaborate] | ||
R -->|No| T[End Interaction] | ||
S --> U[Integrate New Knowledge] | ||
U --> A | ||
|
||
subgraph Continuous Improvement Loop | ||
V[Observe] --> W[Analyze] | ||
W --> X[Synthesize] | ||
X --> Y{Novel insights?} | ||
Y -->|Yes| Z[Integrate] | ||
Z --> V | ||
Y -->|No| V | ||
end | ||
|
||
Q --> V |