> For the complete documentation index, see [llms.txt](https://docs.yemreak.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.yemreak.com/contents/900c440d.md).

# Yapay Zekalar icin Visualization Hatirlatmalari

1. STATE MACHINE - state geçişleri, transition kuralları, terminal states
2. BOX DIAGRAM (Black/White) - abstraction level, detay gizleme/gösterme
3. FLOW CHART - sequential flow, conditional branching, merge points
4. DECISION TREE - hierarchical decisions, criteria-based branching
5. FEEDBACK LOOP - circular causality, self-regulation, reinforcing/balancing
6. CAUSAL LOOP - causal chains, feedback polarity (+/-), delays
7. HIERARCHY / TREE - parent-child, depth levels, breadth
8. PROCESS PIPELINE - sequential stages, data transformation
9. LAYERED ARCHITECTURE - separation of concerns, abstraction layers
10. NETWORK / GRAPH - nodes, edges, connections, topology
11. MATRIX / GRID - two-dimensional, row/column relationships
12. VENN DIAGRAM - set relationships, intersection, union
13. TIMELINE / SEQUENCE - temporal ordering, before/after, dependencies
14. INPUT-OUTPUT TRANSFORMATION - function mapping, side effects
15. CONTAINER / SCOPE - nesting, scope boundaries, containment

```sh
A ──> B ──╮
          │
          ╰──> C ──> D
Start ──╮
        │
        ╰───╮
            │
            ╰───> End

 ┌──────────────┐
 │ voice msg    │
 └──────┬───────┘
				▼
		◉ voice_received ◄────────────────┐
				▼                             │
	voice_transcribe                    │
				▼                             │
		◉ voice_transcribed (TEXT)        │
				│                             │
				├──────────┬─────────┐        │
				▼          ▼         ▼        │
text_synthesize  translate  tag       │
				│          │         │        │
				▼          ▼         ▼        │
		◉ voice_   ◉ text_   ◉ tag_       │
		synthesized translated selection  │
		(VOICE)    (TEXT)     (SPECIAL)   │
				│          │                  │
				└──────────┴──────────────────┘
				▲                     │
				└─────────────────────┘
```

PATTERN: Her model bir abstraction level seçer ve belirli bir görünüm sağlar. CONSTRAINT: Model seçimi soruya bağlıdır — state geçişleri için state machine, hiyerarşi için tree, zaman için timeline.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.yemreak.com/contents/900c440d.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
