gitextract_heta9u5j/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── claude-code-review.yml │ └── claude.yml ├── .gitignore ├── CITATION.cff ├── CLAUDE.md ├── LICENSE.md ├── README.md ├── ar-pages/ │ ├── about.ar.mdx │ ├── applications/ │ │ ├── _meta.ar.json │ │ ├── coding.ar.mdx │ │ ├── function_calling.ar.mdx │ │ ├── generating.ar.mdx │ │ ├── generating_textbooks.ar.mdx │ │ ├── pf.ar.mdx │ │ ├── synthetic_rag.ar.mdx │ │ └── workplace_casestudy.ar.mdx │ ├── applications.ar.mdx │ ├── course.ar.mdx │ ├── datasets.ar.mdx │ ├── introduction/ │ │ ├── _meta.ar.json │ │ ├── basics.ar.mdx │ │ ├── elements.ar.mdx │ │ ├── examples.ar.mdx │ │ ├── settings.ar.mdx │ │ └── tips.ar.mdx │ ├── introduction.ar.mdx │ ├── models/ │ │ ├── _meta.ar.json │ │ ├── chatgpt.ar.mdx │ │ ├── claude-3.ar.mdx │ │ ├── code-llama.ar.mdx │ │ ├── collection.ar.mdx │ │ ├── flan.ar.mdx │ │ ├── gemini-advanced.ar.mdx │ │ ├── gemini-pro.ar.mdx │ │ ├── gemini.ar.mdx │ │ ├── gemma.ar.mdx │ │ ├── gpt-4.ar.mdx │ │ ├── grok-1.ar.mdx │ │ ├── llama-3.ar.mdx │ │ ├── llama.ar.mdx │ │ ├── mistral-7b.ar.mdx │ │ ├── mixtral-8x22b.ar.mdx │ │ ├── mixtral.ar.mdx │ │ ├── olmo.ar.mdx │ │ ├── phi-2.ar.mdx │ │ └── sora.ar.mdx │ ├── models.ar.mdx │ ├── notebooks.ar.mdx │ ├── papers.ar.mdx │ ├── prompts.ar.mdx │ ├── readings.ar.mdx │ ├── research/ │ │ ├── _meta.ar.json │ │ ├── groq.ar.mdx │ │ ├── guided-cot.ar.mdx │ │ ├── infini-attention.ar.mdx │ │ ├── llm-agents.ar.mdx │ │ ├── llm-reasoning.ar.mdx │ │ ├── llm-recall.ar.mdx │ │ ├── llm-tokenization.ar.mdx │ │ ├── rag-faithfulness.ar.mdx │ │ ├── rag.ar.mdx │ │ ├── rag_hallucinations.ar.mdx │ │ ├── synthetic_data.ar.mdx │ │ ├── thoughtsculpt.ar.mdx │ │ └── trustworthiness-in-llms.ar.mdx │ ├── research.ar.mdx │ ├── risks/ │ │ ├── _meta.ar.json │ │ ├── adversarial.ar.mdx │ │ ├── biases.ar.mdx │ │ └── factuality.ar.mdx │ ├── risks.ar.mdx │ ├── services.ar.mdx │ ├── techniques/ │ │ ├── _meta.ar.json │ │ ├── activeprompt.ar.mdx │ │ ├── ape.ar.mdx │ │ ├── art.ar.mdx │ │ ├── consistency.ar.mdx │ │ ├── cot.ar.mdx │ │ ├── dsp.ar.mdx │ │ ├── fewshot.ar.mdx │ │ ├── graph.ar.mdx │ │ ├── knowledge.ar.mdx │ │ ├── multimodalcot.ar.mdx │ │ ├── pal.ar.mdx │ │ ├── prompt_chaining.ar.mdx │ │ ├── rag.ar.mdx │ │ ├── react.ar.mdx │ │ ├── reflexion.ar.mdx │ │ ├── tot.ar.mdx │ │ └── zeroshot.ar.mdx │ ├── techniques.ar.mdx │ └── tools.ar.mdx ├── components/ │ ├── AnnouncementBar.tsx │ ├── CodeBlock.tsx │ ├── ContentFileNames.tsx │ ├── CopyPageDropdown.tsx │ ├── CourseCard.tsx │ ├── PromptFiles.jsx │ ├── TabsComponent.tsx │ ├── button.tsx │ ├── check.tsx │ ├── copy-to-clipboard.tsx │ ├── copy.tsx │ ├── counters.module.css │ ├── counters.tsx │ ├── icons/ │ │ └── index.ts │ ├── pre.tsx │ ├── screenshot/ │ │ └── index.jsx │ └── word-wrap.tsx ├── guides/ │ ├── README.md │ ├── prompts-advanced-usage.md │ ├── prompts-adversarial.md │ ├── prompts-applications.md │ ├── prompts-basic-usage.md │ ├── prompts-chatgpt.md │ ├── prompts-intro.md │ ├── prompts-miscellaneous.md │ └── prompts-reliability.md ├── infographic-review.html ├── middleware.js ├── next-env.d.ts ├── next.config.js ├── notebooks/ │ ├── gemini-context-caching.ipynb │ ├── pe-chatgpt-adversarial.ipynb │ ├── pe-chatgpt-intro.ipynb │ ├── pe-chatgpt-langchain.ipynb │ ├── pe-code-llama.ipynb │ ├── pe-function-calling.ipynb │ ├── pe-lecture.ipynb │ ├── pe-litellm-intro.ipynb │ ├── pe-mixtral-introduction.ipynb │ ├── pe-pal.ipynb │ ├── pe-rag.ipynb │ └── react.ipynb ├── package.json ├── pages/ │ ├── _app.tsx │ ├── _meta.ar.json │ ├── _meta.ca.json │ ├── _meta.de.json │ ├── _meta.en.json │ ├── _meta.es.json │ ├── _meta.fi.json │ ├── _meta.fr.json │ ├── _meta.it.json │ ├── _meta.jp.json │ ├── _meta.kr.json │ ├── _meta.pt.json │ ├── _meta.ru.json │ ├── _meta.tr.json │ ├── _meta.zh.json │ ├── about.ca.mdx │ ├── about.de.mdx │ ├── about.en.mdx │ ├── about.es.mdx │ ├── about.fi.mdx │ ├── about.fr.mdx │ ├── about.it.mdx │ ├── about.jp.mdx │ ├── about.kr.mdx │ ├── about.pt.mdx │ ├── about.ru.mdx │ ├── about.tr.mdx │ ├── about.zh.mdx │ ├── agents/ │ │ ├── _meta.en.json │ │ ├── ai-workflows-vs-ai-agents.en.mdx │ │ ├── components.en.mdx │ │ ├── context-engineering-deep-dive.en.mdx │ │ ├── context-engineering.en.mdx │ │ ├── deep-agents.en.mdx │ │ ├── function-calling.en.mdx │ │ └── introduction.en.mdx │ ├── agents.en.mdx │ ├── api/ │ │ ├── contentFiles.js │ │ ├── getPageContent.ts │ │ └── promptsFiles.js │ ├── applications/ │ │ ├── _meta.ca.json │ │ ├── _meta.de.json │ │ ├── _meta.en.json │ │ ├── _meta.es.json │ │ ├── _meta.fi.json │ │ ├── _meta.fr.json │ │ ├── _meta.it.json │ │ ├── _meta.jp.json │ │ ├── _meta.kr.json │ │ ├── _meta.pt.json │ │ ├── _meta.ru.json │ │ ├── _meta.tr.json │ │ ├── _meta.zh.json │ │ ├── coding.ca.mdx │ │ ├── coding.de.mdx │ │ ├── coding.en.mdx │ │ ├── coding.es.mdx │ │ ├── coding.fi.mdx │ │ ├── coding.fr.mdx │ │ ├── coding.it.mdx │ │ ├── coding.jp.mdx │ │ ├── coding.kr.mdx │ │ ├── coding.pt.mdx │ │ ├── coding.ru.mdx │ │ ├── coding.tr.mdx │ │ ├── coding.zh.mdx │ │ ├── context-caching.en.mdx │ │ ├── finetuning-gpt4o.en.mdx │ │ ├── function_calling.ca.mdx │ │ ├── function_calling.de.mdx │ │ ├── function_calling.en.mdx │ │ ├── function_calling.es.mdx │ │ ├── function_calling.fi.mdx │ │ ├── function_calling.fr.mdx │ │ ├── function_calling.it.mdx │ │ ├── function_calling.jp.mdx │ │ ├── function_calling.kr.mdx │ │ ├── function_calling.pt.mdx │ │ ├── function_calling.ru.mdx │ │ ├── function_calling.tr.mdx │ │ ├── function_calling.zh.mdx │ │ ├── generating.ca.mdx │ │ ├── generating.de.mdx │ │ ├── generating.en.mdx │ │ ├── generating.es.mdx │ │ ├── generating.fi.mdx │ │ ├── generating.fr.mdx │ │ ├── generating.it.mdx │ │ ├── generating.jp.mdx │ │ ├── generating.kr.mdx │ │ ├── generating.pt.mdx │ │ ├── generating.ru.mdx │ │ ├── generating.tr.mdx │ │ ├── generating.zh.mdx │ │ ├── generating_textbooks.de.mdx │ │ ├── generating_textbooks.en.mdx │ │ ├── pf.ca.mdx │ │ ├── pf.de.mdx │ │ ├── pf.en.mdx │ │ ├── pf.es.mdx │ │ ├── pf.fi.mdx │ │ ├── pf.fr.mdx │ │ ├── pf.it.mdx │ │ ├── pf.jp.mdx │ │ ├── pf.kr.mdx │ │ ├── pf.pt.mdx │ │ ├── pf.ru.mdx │ │ ├── pf.tr.mdx │ │ ├── pf.zh.mdx │ │ ├── synthetic_rag.de.mdx │ │ ├── synthetic_rag.en.mdx │ │ ├── workplace_casestudy.ca.mdx │ │ ├── workplace_casestudy.de.mdx │ │ ├── workplace_casestudy.en.mdx │ │ ├── workplace_casestudy.es.mdx │ │ ├── workplace_casestudy.fi.mdx │ │ ├── workplace_casestudy.fr.mdx │ │ ├── workplace_casestudy.it.mdx │ │ ├── workplace_casestudy.jp.mdx │ │ ├── workplace_casestudy.kr.mdx │ │ ├── workplace_casestudy.pt.mdx │ │ ├── workplace_casestudy.ru.mdx │ │ ├── workplace_casestudy.tr.mdx │ │ └── workplace_casestudy.zh.mdx │ ├── applications.ca.mdx │ ├── applications.de.mdx │ ├── applications.en.mdx │ ├── applications.es.mdx │ ├── applications.fi.mdx │ ├── applications.fr.mdx │ ├── applications.it.mdx │ ├── applications.jp.mdx │ ├── applications.kr.mdx │ ├── applications.pt.mdx │ ├── applications.ru.mdx │ ├── applications.tr.mdx │ ├── applications.zh.mdx │ ├── course.ca.mdx │ ├── course.de.mdx │ ├── course.es.mdx │ ├── course.fi.mdx │ ├── course.fr.mdx │ ├── course.it.mdx │ ├── course.jp.mdx │ ├── course.kr.mdx │ ├── course.pt.mdx │ ├── course.ru.mdx │ ├── course.tr.mdx │ ├── course.zh.mdx │ ├── courses.en.mdx │ ├── datasets.ca.mdx │ ├── datasets.de.mdx │ ├── datasets.en.mdx │ ├── datasets.es.mdx │ ├── datasets.fi.mdx │ ├── datasets.fr.mdx │ ├── datasets.it.mdx │ ├── datasets.jp.mdx │ ├── datasets.kr.mdx │ ├── datasets.pt.mdx │ ├── datasets.ru.mdx │ ├── datasets.tr.mdx │ ├── datasets.zh.mdx │ ├── guides/ │ │ ├── 4o-image-generation.en.mdx │ │ ├── _meta.en.json │ │ ├── context-engineering-guide.en.mdx │ │ ├── deep-research.en.mdx │ │ ├── optimizing-prompts.en.mdx │ │ └── reasoning-llms.en.mdx │ ├── index.ar.mdx │ ├── index.ca.mdx │ ├── index.de.mdx │ ├── index.en.mdx │ ├── index.es.mdx │ ├── index.fi.mdx │ ├── index.fr.mdx │ ├── index.it.mdx │ ├── index.jp.mdx │ ├── index.kr.mdx │ ├── index.pt.mdx │ ├── index.ru.mdx │ ├── index.tr.mdx │ ├── index.zh.mdx │ ├── introduction/ │ │ ├── _meta.ca.json │ │ ├── _meta.de.json │ │ ├── _meta.en.json │ │ ├── _meta.es.json │ │ ├── _meta.fi.json │ │ ├── _meta.fr.json │ │ ├── _meta.it.json │ │ ├── _meta.jp.json │ │ ├── _meta.kr.json │ │ ├── _meta.pt.json │ │ ├── _meta.ru.json │ │ ├── _meta.tr.json │ │ ├── _meta.zh.json │ │ ├── basics.ca.mdx │ │ ├── basics.de.mdx │ │ ├── basics.en.mdx │ │ ├── basics.es.mdx │ │ ├── basics.fi.mdx │ │ ├── basics.fr.mdx │ │ ├── basics.it.mdx │ │ ├── basics.jp.mdx │ │ ├── basics.kr.mdx │ │ ├── basics.pt.mdx │ │ ├── basics.ru.mdx │ │ ├── basics.tr.mdx │ │ ├── basics.zh.mdx │ │ ├── elements.ca.mdx │ │ ├── elements.de.mdx │ │ ├── elements.en.mdx │ │ ├── elements.es.mdx │ │ ├── elements.fi.mdx │ │ ├── elements.fr.mdx │ │ ├── elements.it.mdx │ │ ├── elements.jp.mdx │ │ ├── elements.kr.mdx │ │ ├── elements.pt.mdx │ │ ├── elements.ru.mdx │ │ ├── elements.tr.mdx │ │ ├── elements.zh.mdx │ │ ├── examples.ca.mdx │ │ ├── examples.de.mdx │ │ ├── examples.en.mdx │ │ ├── examples.es.mdx │ │ ├── examples.fi.mdx │ │ ├── examples.fr.mdx │ │ ├── examples.it.mdx │ │ ├── examples.jp.mdx │ │ ├── examples.kr.mdx │ │ ├── examples.pt.mdx │ │ ├── examples.ru.mdx │ │ ├── examples.tr.mdx │ │ ├── examples.zh.mdx │ │ ├── settings.ca.mdx │ │ ├── settings.de.mdx │ │ ├── settings.en.mdx │ │ ├── settings.es.mdx │ │ ├── settings.fi.mdx │ │ ├── settings.fr.mdx │ │ ├── settings.it.mdx │ │ ├── settings.jp.mdx │ │ ├── settings.kr.mdx │ │ ├── settings.pt.mdx │ │ ├── settings.ru.mdx │ │ ├── settings.tr.mdx │ │ ├── settings.zh.mdx │ │ ├── tips.ca.mdx │ │ ├── tips.de.mdx │ │ ├── tips.en.mdx │ │ ├── tips.es.mdx │ │ ├── tips.fi.mdx │ │ ├── tips.fr.mdx │ │ ├── tips.it.mdx │ │ ├── tips.jp.mdx │ │ ├── tips.kr.mdx │ │ ├── tips.pt.mdx │ │ ├── tips.ru.mdx │ │ ├── tips.tr.mdx │ │ └── tips.zh.mdx │ ├── introduction.ca.mdx │ ├── introduction.de.mdx │ ├── introduction.en.mdx │ ├── introduction.es.mdx │ ├── introduction.fi.mdx │ ├── introduction.fr.mdx │ ├── introduction.it.mdx │ ├── introduction.jp.mdx │ ├── introduction.kr.mdx │ ├── introduction.pt.mdx │ ├── introduction.ru.mdx │ ├── introduction.tr.mdx │ ├── introduction.zh.mdx │ ├── models/ │ │ ├── _meta.ca.json │ │ ├── _meta.de.json │ │ ├── _meta.en.json │ │ ├── _meta.es.json │ │ ├── _meta.fi.json │ │ ├── _meta.fr.json │ │ ├── _meta.it.json │ │ ├── _meta.jp.json │ │ ├── _meta.kr.json │ │ ├── _meta.pt.json │ │ ├── _meta.ru.json │ │ ├── _meta.tr.json │ │ ├── _meta.zh.json │ │ ├── chatgpt.ca.mdx │ │ ├── chatgpt.de.mdx │ │ ├── chatgpt.en.mdx │ │ ├── chatgpt.es.mdx │ │ ├── chatgpt.fi.mdx │ │ ├── chatgpt.fr.mdx │ │ ├── chatgpt.it.mdx │ │ ├── chatgpt.jp.mdx │ │ ├── chatgpt.kr.mdx │ │ ├── chatgpt.pt.mdx │ │ ├── chatgpt.ru.mdx │ │ ├── chatgpt.tr.mdx │ │ ├── chatgpt.zh.mdx │ │ ├── claude-3.de.mdx │ │ ├── claude-3.en.mdx │ │ ├── code-llama.ca.mdx │ │ ├── code-llama.de.mdx │ │ ├── code-llama.en.mdx │ │ ├── code-llama.es.mdx │ │ ├── code-llama.fi.mdx │ │ ├── code-llama.fr.mdx │ │ ├── code-llama.it.mdx │ │ ├── code-llama.jp.mdx │ │ ├── code-llama.kr.mdx │ │ ├── code-llama.pt.mdx │ │ ├── code-llama.ru.mdx │ │ ├── code-llama.tr.mdx │ │ ├── code-llama.zh.mdx │ │ ├── collection.ca.mdx │ │ ├── collection.de.mdx │ │ ├── collection.en.mdx │ │ ├── collection.es.mdx │ │ ├── collection.fi.mdx │ │ ├── collection.fr.mdx │ │ ├── collection.it.mdx │ │ ├── collection.jp.mdx │ │ ├── collection.kr.mdx │ │ ├── collection.pt.mdx │ │ ├── collection.ru.mdx │ │ ├── collection.tr.mdx │ │ ├── collection.zh.mdx │ │ ├── flan.ca.mdx │ │ ├── flan.de.mdx │ │ ├── flan.en.mdx │ │ ├── flan.es.mdx │ │ ├── flan.fi.mdx │ │ ├── flan.fr.mdx │ │ ├── flan.it.mdx │ │ ├── flan.jp.mdx │ │ ├── flan.kr.mdx │ │ ├── flan.pt.mdx │ │ ├── flan.ru.mdx │ │ ├── flan.tr.mdx │ │ ├── flan.zh.mdx │ │ ├── gemini-advanced.ca.mdx │ │ ├── gemini-advanced.de.mdx │ │ ├── gemini-advanced.en.mdx │ │ ├── gemini-advanced.es.mdx │ │ ├── gemini-advanced.fi.mdx │ │ ├── gemini-advanced.fr.mdx │ │ ├── gemini-advanced.it.mdx │ │ ├── gemini-advanced.jp.mdx │ │ ├── gemini-advanced.kr.mdx │ │ ├── gemini-advanced.pt.mdx │ │ ├── gemini-advanced.ru.mdx │ │ ├── gemini-advanced.tr.mdx │ │ ├── gemini-advanced.zh.mdx │ │ ├── gemini-pro.ca.mdx │ │ ├── gemini-pro.de.mdx │ │ ├── gemini-pro.en.mdx │ │ ├── gemini-pro.es.mdx │ │ ├── gemini-pro.fi.mdx │ │ ├── gemini-pro.fr.mdx │ │ ├── gemini-pro.it.mdx │ │ ├── gemini-pro.jp.mdx │ │ ├── gemini-pro.kr.mdx │ │ ├── gemini-pro.pt.mdx │ │ ├── gemini-pro.ru.mdx │ │ ├── gemini-pro.tr.mdx │ │ ├── gemini-pro.zh.mdx │ │ ├── gemini.ca.mdx │ │ ├── gemini.de.mdx │ │ ├── gemini.en.mdx │ │ ├── gemini.es.mdx │ │ ├── gemini.fi.mdx │ │ ├── gemini.fr.mdx │ │ ├── gemini.it.mdx │ │ ├── gemini.jp.mdx │ │ ├── gemini.kr.mdx │ │ ├── gemini.pt.mdx │ │ ├── gemini.ru.mdx │ │ ├── gemini.tr.mdx │ │ ├── gemini.zh.mdx │ │ ├── gemma.de.mdx │ │ ├── gemma.en.mdx │ │ ├── gpt-4.ca.mdx │ │ ├── gpt-4.de.mdx │ │ ├── gpt-4.en.mdx │ │ ├── gpt-4.es.mdx │ │ ├── gpt-4.fi.mdx │ │ ├── gpt-4.fr.mdx │ │ ├── gpt-4.it.mdx │ │ ├── gpt-4.jp.mdx │ │ ├── gpt-4.kr.mdx │ │ ├── gpt-4.pt.mdx │ │ ├── gpt-4.ru.mdx │ │ ├── gpt-4.tr.mdx │ │ ├── gpt-4.zh.mdx │ │ ├── grok-1.de.mdx │ │ ├── grok-1.en.mdx │ │ ├── kimi-k2.5.en.mdx │ │ ├── llama-3.de.mdx │ │ ├── llama-3.en.mdx │ │ ├── llama.ca.mdx │ │ ├── llama.de.mdx │ │ ├── llama.en.mdx │ │ ├── llama.es.mdx │ │ ├── llama.fi.mdx │ │ ├── llama.fr.mdx │ │ ├── llama.it.mdx │ │ ├── llama.jp.mdx │ │ ├── llama.kr.mdx │ │ ├── llama.pt.mdx │ │ ├── llama.ru.mdx │ │ ├── llama.tr.mdx │ │ ├── llama.zh.mdx │ │ ├── mistral-7b.ca.mdx │ │ ├── mistral-7b.de.mdx │ │ ├── mistral-7b.en.mdx │ │ ├── mistral-7b.es.mdx │ │ ├── mistral-7b.fi.mdx │ │ ├── mistral-7b.fr.mdx │ │ ├── mistral-7b.it.mdx │ │ ├── mistral-7b.jp.mdx │ │ ├── mistral-7b.kr.mdx │ │ ├── mistral-7b.pt.mdx │ │ ├── mistral-7b.ru.mdx │ │ ├── mistral-7b.tr.mdx │ │ ├── mistral-7b.zh.mdx │ │ ├── mistral-large.de.mdx │ │ ├── mistral-large.en.mdx │ │ ├── mixtral-8x22b.de.mdx │ │ ├── mixtral-8x22b.en.mdx │ │ ├── mixtral.ca.mdx │ │ ├── mixtral.de.mdx │ │ ├── mixtral.en.mdx │ │ ├── mixtral.es.mdx │ │ ├── mixtral.fi.mdx │ │ ├── mixtral.fr.mdx │ │ ├── mixtral.it.mdx │ │ ├── mixtral.jp.mdx │ │ ├── mixtral.kr.mdx │ │ ├── mixtral.pt.mdx │ │ ├── mixtral.ru.mdx │ │ ├── mixtral.tr.mdx │ │ ├── mixtral.zh.mdx │ │ ├── olmo.ca.mdx │ │ ├── olmo.de.mdx │ │ ├── olmo.en.mdx │ │ ├── olmo.es.mdx │ │ ├── olmo.fi.mdx │ │ ├── olmo.fr.mdx │ │ ├── olmo.it.mdx │ │ ├── olmo.jp.mdx │ │ ├── olmo.kr.mdx │ │ ├── olmo.pt.mdx │ │ ├── olmo.ru.mdx │ │ ├── olmo.tr.mdx │ │ ├── olmo.zh.mdx │ │ ├── phi-2.ca.mdx │ │ ├── phi-2.de.mdx │ │ ├── phi-2.en.mdx │ │ ├── phi-2.es.mdx │ │ ├── phi-2.fi.mdx │ │ ├── phi-2.fr.mdx │ │ ├── phi-2.it.mdx │ │ ├── phi-2.jp.mdx │ │ ├── phi-2.kr.mdx │ │ ├── phi-2.pt.mdx │ │ ├── phi-2.ru.mdx │ │ ├── phi-2.tr.mdx │ │ ├── phi-2.zh.mdx │ │ ├── sora.ca.mdx │ │ ├── sora.de.mdx │ │ ├── sora.en.mdx │ │ ├── sora.es.mdx │ │ ├── sora.fi.mdx │ │ ├── sora.fr.mdx │ │ ├── sora.it.mdx │ │ ├── sora.jp.mdx │ │ ├── sora.kr.mdx │ │ ├── sora.pt.mdx │ │ ├── sora.ru.mdx │ │ ├── sora.tr.mdx │ │ └── sora.zh.mdx │ ├── models.ca.mdx │ ├── models.de.mdx │ ├── models.en.mdx │ ├── models.es.mdx │ ├── models.fi.mdx │ ├── models.fr.mdx │ ├── models.it.mdx │ ├── models.jp.mdx │ ├── models.kr.mdx │ ├── models.pt.mdx │ ├── models.tr.mdx │ ├── models.zh.mdx │ ├── notebooks.ca.mdx │ ├── notebooks.de.mdx │ ├── notebooks.en.mdx │ ├── notebooks.es.mdx │ ├── notebooks.fi.mdx │ ├── notebooks.fr.mdx │ ├── notebooks.it.mdx │ ├── notebooks.jp.mdx │ ├── notebooks.kr.mdx │ ├── notebooks.pt.mdx │ ├── notebooks.ru.mdx │ ├── notebooks.tr.mdx │ ├── notebooks.zh.mdx │ ├── papers.ca.mdx │ ├── papers.de.mdx │ ├── papers.en.mdx │ ├── papers.es.mdx │ ├── papers.fi.mdx │ ├── papers.fr.mdx │ ├── papers.it.mdx │ ├── papers.jp.mdx │ ├── papers.kr.mdx │ ├── papers.pt.mdx │ ├── papers.ru.mdx │ ├── papers.tr.mdx │ ├── papers.zh.mdx │ ├── prompts.ca.mdx │ ├── prompts.de.mdx │ ├── prompts.en.mdx │ ├── prompts.es.mdx │ ├── prompts.fi.mdx │ ├── prompts.fr.mdx │ ├── prompts.it.mdx │ ├── prompts.jp.mdx │ ├── prompts.kr.mdx │ ├── prompts.pt.mdx │ ├── prompts.ru.mdx │ ├── prompts.tr.mdx │ ├── prompts.zh.mdx │ ├── readings.ca.mdx │ ├── readings.de.mdx │ ├── readings.en.mdx │ ├── readings.es.mdx │ ├── readings.fi.mdx │ ├── readings.fr.mdx │ ├── readings.it.mdx │ ├── readings.jp.mdx │ ├── readings.kr.mdx │ ├── readings.pt.mdx │ ├── readings.ru.mdx │ ├── readings.tr.mdx │ ├── readings.zh.mdx │ ├── research/ │ │ ├── _meta.ca.json │ │ ├── _meta.de.json │ │ ├── _meta.en.json │ │ ├── _meta.es.json │ │ ├── _meta.fi.json │ │ ├── _meta.fr.json │ │ ├── _meta.it.json │ │ ├── _meta.jp.json │ │ ├── _meta.kr.json │ │ ├── _meta.pt.json │ │ ├── _meta.ru.json │ │ ├── _meta.tr.json │ │ ├── _meta.zh.json │ │ ├── groq.de.mdx │ │ ├── groq.en.mdx │ │ ├── groq.zh.mdx │ │ ├── guided-cot.de.mdx │ │ ├── guided-cot.en.mdx │ │ ├── guided-cot.zh.mdx │ │ ├── infini-attention.de.mdx │ │ ├── infini-attention.en.mdx │ │ ├── infini-attention.zh.mdx │ │ ├── llm-agents.ca.mdx │ │ ├── llm-agents.de.mdx │ │ ├── llm-agents.en.mdx │ │ ├── llm-agents.es.mdx │ │ ├── llm-agents.fi.mdx │ │ ├── llm-agents.fr.mdx │ │ ├── llm-agents.it.mdx │ │ ├── llm-agents.jp.mdx │ │ ├── llm-agents.kr.mdx │ │ ├── llm-agents.pt.mdx │ │ ├── llm-agents.ru.mdx │ │ ├── llm-agents.tr.mdx │ │ ├── llm-agents.zh.mdx │ │ ├── llm-reasoning.de.mdx │ │ ├── llm-reasoning.en.mdx │ │ ├── llm-reasoning.zh.mdx │ │ ├── llm-recall.de.mdx │ │ ├── llm-recall.en.mdx │ │ ├── llm-recall.zh.mdx │ │ ├── llm-tokenization.de.mdx │ │ ├── llm-tokenization.en.mdx │ │ ├── llm-tokenization.zh.mdx │ │ ├── rag-faithfulness.de.mdx │ │ ├── rag-faithfulness.en.mdx │ │ ├── rag-faithfulness.zh.mdx │ │ ├── rag.ca.mdx │ │ ├── rag.de.mdx │ │ ├── rag.en.mdx │ │ ├── rag.es.mdx │ │ ├── rag.fi.mdx │ │ ├── rag.fr.mdx │ │ ├── rag.it.mdx │ │ ├── rag.jp.mdx │ │ ├── rag.kr.mdx │ │ ├── rag.pt.mdx │ │ ├── rag.ru.mdx │ │ ├── rag.tr.mdx │ │ ├── rag.zh.mdx │ │ ├── rag_hallucinations.de.mdx │ │ ├── rag_hallucinations.en.mdx │ │ ├── rag_hallucinations.zh.mdx │ │ ├── synthetic_data.de.mdx │ │ ├── synthetic_data.en.mdx │ │ ├── synthetic_data.zh.mdx │ │ ├── thoughtsculpt.de.mdx │ │ ├── thoughtsculpt.en.mdx │ │ ├── thoughtsculpt.zh.mdx │ │ ├── trustworthiness-in-llms.ca.mdx │ │ ├── trustworthiness-in-llms.de.mdx │ │ ├── trustworthiness-in-llms.en.mdx │ │ ├── trustworthiness-in-llms.es.mdx │ │ ├── trustworthiness-in-llms.fi.mdx │ │ ├── trustworthiness-in-llms.fr.mdx │ │ ├── trustworthiness-in-llms.it.mdx │ │ ├── trustworthiness-in-llms.jp.mdx │ │ ├── trustworthiness-in-llms.kr.mdx │ │ ├── trustworthiness-in-llms.pt.mdx │ │ ├── trustworthiness-in-llms.ru.mdx │ │ ├── trustworthiness-in-llms.tr.mdx │ │ └── trustworthiness-in-llms.zh.mdx │ ├── research.ca.mdx │ ├── research.de.mdx │ ├── research.en.mdx │ ├── research.es.mdx │ ├── research.fi.mdx │ ├── research.fr.mdx │ ├── research.it.mdx │ ├── research.jp.mdx │ ├── research.kr.mdx │ ├── research.pt.mdx │ ├── research.ru.mdx │ ├── research.tr.mdx │ ├── research.zh.mdx │ ├── risks/ │ │ ├── _meta.ca.json │ │ ├── _meta.de.json │ │ ├── _meta.en.json │ │ ├── _meta.es.json │ │ ├── _meta.fi.json │ │ ├── _meta.fr.json │ │ ├── _meta.it.json │ │ ├── _meta.jp.json │ │ ├── _meta.kr.json │ │ ├── _meta.pt.json │ │ ├── _meta.ru.json │ │ ├── _meta.tr.json │ │ ├── _meta.zh.json │ │ ├── adversarial.ca.mdx │ │ ├── adversarial.de.mdx │ │ ├── adversarial.en.mdx │ │ ├── adversarial.es.mdx │ │ ├── adversarial.fi.mdx │ │ ├── adversarial.fr.mdx │ │ ├── adversarial.it.mdx │ │ ├── adversarial.jp.mdx │ │ ├── adversarial.kr.mdx │ │ ├── adversarial.pt.mdx │ │ ├── adversarial.ru.mdx │ │ ├── adversarial.tr.mdx │ │ ├── adversarial.zh.mdx │ │ ├── biases.ca.mdx │ │ ├── biases.de.mdx │ │ ├── biases.en.mdx │ │ ├── biases.es.mdx │ │ ├── biases.fi.mdx │ │ ├── biases.fr.mdx │ │ ├── biases.it.mdx │ │ ├── biases.jp.mdx │ │ ├── biases.kr.mdx │ │ ├── biases.pt.mdx │ │ ├── biases.ru.mdx │ │ ├── biases.tr.mdx │ │ ├── biases.zh.mdx │ │ ├── factuality.ca.mdx │ │ ├── factuality.de.mdx │ │ ├── factuality.en.mdx │ │ ├── factuality.es.mdx │ │ ├── factuality.fi.mdx │ │ ├── factuality.fr.mdx │ │ ├── factuality.it.mdx │ │ ├── factuality.jp.mdx │ │ ├── factuality.kr.mdx │ │ ├── factuality.pt.mdx │ │ ├── factuality.ru.mdx │ │ ├── factuality.tr.mdx │ │ └── factuality.zh.mdx │ ├── risks.ca.mdx │ ├── risks.de.mdx │ ├── risks.en.mdx │ ├── risks.es.mdx │ ├── risks.fi.mdx │ ├── risks.fr.mdx │ ├── risks.it.mdx │ ├── risks.jp.mdx │ ├── risks.kr.mdx │ ├── risks.pt.mdx │ ├── risks.ru.mdx │ ├── risks.tr.mdx │ ├── risks.zh.mdx │ ├── services.ar.mdx │ ├── services.ca.mdx │ ├── services.de.mdx │ ├── services.en.mdx │ ├── services.es.mdx │ ├── services.fi.mdx │ ├── services.fr.mdx │ ├── services.it.mdx │ ├── services.jp.mdx │ ├── services.kr.mdx │ ├── services.pt.mdx │ ├── services.ru.mdx │ ├── services.tr.mdx │ ├── services.zh.mdx │ ├── style.css │ ├── techniques/ │ │ ├── _meta.ca.json │ │ ├── _meta.de.json │ │ ├── _meta.en.json │ │ ├── _meta.es.json │ │ ├── _meta.fi.json │ │ ├── _meta.fr.json │ │ ├── _meta.it.json │ │ ├── _meta.jp.json │ │ ├── _meta.kr.json │ │ ├── _meta.pt.json │ │ ├── _meta.ru.json │ │ ├── _meta.tr.json │ │ ├── _meta.zh.json │ │ ├── activeprompt.ca.mdx │ │ ├── activeprompt.de.mdx │ │ ├── activeprompt.en.mdx │ │ ├── activeprompt.es.mdx │ │ ├── activeprompt.fi.mdx │ │ ├── activeprompt.fr.mdx │ │ ├── activeprompt.it.mdx │ │ ├── activeprompt.jp.mdx │ │ ├── activeprompt.kr.mdx │ │ ├── activeprompt.pt.mdx │ │ ├── activeprompt.ru.mdx │ │ ├── activeprompt.tr.mdx │ │ ├── activeprompt.zh.mdx │ │ ├── ape.ca.mdx │ │ ├── ape.de.mdx │ │ ├── ape.en.mdx │ │ ├── ape.es.mdx │ │ ├── ape.fi.mdx │ │ ├── ape.fr.mdx │ │ ├── ape.it.mdx │ │ ├── ape.jp.mdx │ │ ├── ape.kr.mdx │ │ ├── ape.pt.mdx │ │ ├── ape.ru.mdx │ │ ├── ape.tr.mdx │ │ ├── ape.zh.mdx │ │ ├── art.ca.mdx │ │ ├── art.de.mdx │ │ ├── art.en.mdx │ │ ├── art.es.mdx │ │ ├── art.fi.mdx │ │ ├── art.fr.mdx │ │ ├── art.it.mdx │ │ ├── art.jp.mdx │ │ ├── art.kr.mdx │ │ ├── art.pt.mdx │ │ ├── art.ru.mdx │ │ ├── art.tr.mdx │ │ ├── art.zh.mdx │ │ ├── consistency.ca.mdx │ │ ├── consistency.de.mdx │ │ ├── consistency.en.mdx │ │ ├── consistency.es.mdx │ │ ├── consistency.fi.mdx │ │ ├── consistency.fr.mdx │ │ ├── consistency.it.mdx │ │ ├── consistency.jp.mdx │ │ ├── consistency.kr.mdx │ │ ├── consistency.pt.mdx │ │ ├── consistency.ru.mdx │ │ ├── consistency.tr.mdx │ │ ├── consistency.zh.mdx │ │ ├── cot.ca.mdx │ │ ├── cot.de.mdx │ │ ├── cot.en.mdx │ │ ├── cot.es.mdx │ │ ├── cot.fi.mdx │ │ ├── cot.fr.mdx │ │ ├── cot.it.mdx │ │ ├── cot.jp.mdx │ │ ├── cot.kr.mdx │ │ ├── cot.pt.mdx │ │ ├── cot.ru.mdx │ │ ├── cot.tr.mdx │ │ ├── cot.zh.mdx │ │ ├── dsp.ca.mdx │ │ ├── dsp.de.mdx │ │ ├── dsp.en.mdx │ │ ├── dsp.es.mdx │ │ ├── dsp.fi.mdx │ │ ├── dsp.fr.mdx │ │ ├── dsp.it.mdx │ │ ├── dsp.jp.mdx │ │ ├── dsp.kr.mdx │ │ ├── dsp.pt.mdx │ │ ├── dsp.ru.mdx │ │ ├── dsp.tr.mdx │ │ ├── dsp.zh.mdx │ │ ├── fewshot.ca.mdx │ │ ├── fewshot.de.mdx │ │ ├── fewshot.en.mdx │ │ ├── fewshot.es.mdx │ │ ├── fewshot.fi.mdx │ │ ├── fewshot.fr.mdx │ │ ├── fewshot.it.mdx │ │ ├── fewshot.jp.mdx │ │ ├── fewshot.kr.mdx │ │ ├── fewshot.pt.mdx │ │ ├── fewshot.ru.mdx │ │ ├── fewshot.tr.mdx │ │ ├── fewshot.zh.mdx │ │ ├── graph.ca.mdx │ │ ├── graph.de.mdx │ │ ├── graph.en.mdx │ │ ├── graph.es.mdx │ │ ├── graph.fi.mdx │ │ ├── graph.fr.mdx │ │ ├── graph.it.mdx │ │ ├── graph.jp.mdx │ │ ├── graph.kr.mdx │ │ ├── graph.pt.mdx │ │ ├── graph.ru.mdx │ │ ├── graph.tr.mdx │ │ ├── graph.zh.mdx │ │ ├── knowledge.ca.mdx │ │ ├── knowledge.de.mdx │ │ ├── knowledge.en.mdx │ │ ├── knowledge.es.mdx │ │ ├── knowledge.fi.mdx │ │ ├── knowledge.fr.mdx │ │ ├── knowledge.it.mdx │ │ ├── knowledge.jp.mdx │ │ ├── knowledge.kr.mdx │ │ ├── knowledge.pt.mdx │ │ ├── knowledge.ru.mdx │ │ ├── knowledge.tr.mdx │ │ ├── knowledge.zh.mdx │ │ ├── meta-prompting.en.mdx │ │ ├── multimodalcot.ca.mdx │ │ ├── multimodalcot.de.mdx │ │ ├── multimodalcot.en.mdx │ │ ├── multimodalcot.es.mdx │ │ ├── multimodalcot.fi.mdx │ │ ├── multimodalcot.fr.mdx │ │ ├── multimodalcot.it.mdx │ │ ├── multimodalcot.jp.mdx │ │ ├── multimodalcot.kr.mdx │ │ ├── multimodalcot.pt.mdx │ │ ├── multimodalcot.ru.mdx │ │ ├── multimodalcot.tr.mdx │ │ ├── multimodalcot.zh.mdx │ │ ├── pal.ca.mdx │ │ ├── pal.de.mdx │ │ ├── pal.en.mdx │ │ ├── pal.es.mdx │ │ ├── pal.fi.mdx │ │ ├── pal.fr.mdx │ │ ├── pal.it.mdx │ │ ├── pal.jp.mdx │ │ ├── pal.kr.mdx │ │ ├── pal.pt.mdx │ │ ├── pal.ru.mdx │ │ ├── pal.tr.mdx │ │ ├── pal.zh.mdx │ │ ├── prompt_chaining.ca.mdx │ │ ├── prompt_chaining.de.mdx │ │ ├── prompt_chaining.en.mdx │ │ ├── prompt_chaining.es.mdx │ │ ├── prompt_chaining.fi.mdx │ │ ├── prompt_chaining.fr.mdx │ │ ├── prompt_chaining.it.mdx │ │ ├── prompt_chaining.jp.mdx │ │ ├── prompt_chaining.kr.mdx │ │ ├── prompt_chaining.pt.mdx │ │ ├── prompt_chaining.ru.mdx │ │ ├── prompt_chaining.tr.mdx │ │ ├── prompt_chaining.zh.mdx │ │ ├── rag.ca.mdx │ │ ├── rag.de.mdx │ │ ├── rag.en.mdx │ │ ├── rag.es.mdx │ │ ├── rag.fi.mdx │ │ ├── rag.fr.mdx │ │ ├── rag.it.mdx │ │ ├── rag.jp.mdx │ │ ├── rag.kr.mdx │ │ ├── rag.pt.mdx │ │ ├── rag.ru.mdx │ │ ├── rag.tr.mdx │ │ ├── rag.zh.mdx │ │ ├── react.ca.mdx │ │ ├── react.de.mdx │ │ ├── react.en.mdx │ │ ├── react.es.mdx │ │ ├── react.fi.mdx │ │ ├── react.fr.mdx │ │ ├── react.it.mdx │ │ ├── react.jp.mdx │ │ ├── react.kr.mdx │ │ ├── react.pt.mdx │ │ ├── react.ru.mdx │ │ ├── react.tr.mdx │ │ ├── react.zh.mdx │ │ ├── reflexion.ca.mdx │ │ ├── reflexion.de.mdx │ │ ├── reflexion.en.mdx │ │ ├── reflexion.es.mdx │ │ ├── reflexion.fi.mdx │ │ ├── reflexion.fr.mdx │ │ ├── reflexion.it.mdx │ │ ├── reflexion.jp.mdx │ │ ├── reflexion.kr.mdx │ │ ├── reflexion.pt.mdx │ │ ├── reflexion.ru.mdx │ │ ├── reflexion.tr.mdx │ │ ├── reflexion.zh.mdx │ │ ├── tot.ca.mdx │ │ ├── tot.de.mdx │ │ ├── tot.en.mdx │ │ ├── tot.es.mdx │ │ ├── tot.fi.mdx │ │ ├── tot.fr.mdx │ │ ├── tot.it.mdx │ │ ├── tot.jp.mdx │ │ ├── tot.kr.mdx │ │ ├── tot.pt.mdx │ │ ├── tot.ru.mdx │ │ ├── tot.tr.mdx │ │ ├── tot.zh.mdx │ │ ├── zeroshot.ca.mdx │ │ ├── zeroshot.de.mdx │ │ ├── zeroshot.en.mdx │ │ ├── zeroshot.es.mdx │ │ ├── zeroshot.fi.mdx │ │ ├── zeroshot.fr.mdx │ │ ├── zeroshot.it.mdx │ │ ├── zeroshot.jp.mdx │ │ ├── zeroshot.kr.mdx │ │ ├── zeroshot.pt.mdx │ │ ├── zeroshot.ru.mdx │ │ ├── zeroshot.tr.mdx │ │ └── zeroshot.zh.mdx │ ├── techniques.ca.mdx │ ├── techniques.de.mdx │ ├── techniques.en.mdx │ ├── techniques.es.mdx │ ├── techniques.fi.mdx │ ├── techniques.fr.mdx │ ├── techniques.it.mdx │ ├── techniques.jp.mdx │ ├── techniques.kr.mdx │ ├── techniques.pt.mdx │ ├── techniques.ru.mdx │ ├── techniques.tr.mdx │ ├── techniques.zh.mdx │ ├── tools.ca.mdx │ ├── tools.de.mdx │ ├── tools.en.mdx │ ├── tools.es.mdx │ ├── tools.fi.mdx │ ├── tools.fr.mdx │ ├── tools.it.mdx │ ├── tools.jp.mdx │ ├── tools.kr.mdx │ ├── tools.pt.mdx │ ├── tools.ru.mdx │ ├── tools.tr.mdx │ └── tools.zh.mdx ├── theme.config.tsx └── tsconfig.json