-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Expand file tree
/
Copy pathregistry.yaml
More file actions
3531 lines (3227 loc) · 85.5 KB
/
Copy pathregistry.yaml
File metadata and controls
3531 lines (3227 loc) · 85.5 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# yaml-language-server: $schema=./.github/registry_schema.json
# This file is used to generate cookbook.openai.com. It specifies which paths we
# should build pages for, and indicates metadata such as tags, creation date and
# authors for each page.
- title: Trigger a Workspace Agent from the API
path: examples/chatgpt/workspace_agents/workspace-agents-api-trigger.ipynb
slug: workspace-agents-api-trigger
description: Configure a Workspace Agent, add an API channel, and send a live trigger that writes to the agent's configured destination.
date: 2026-06-18
authors:
- neilh-oai
tags:
- chatgpt
- chatgpt-and-api
- agents
- enterprise
- api
- workspace-agents
- title: "SchemaFlow: Agentic Database Change Impact Analysis, SQL Generation, and Eval Guardrails"
path: examples/partners/schemaflow_design_guide/schemaflow_cookbook.ipynb
slug: schemaflow-design-guide
description: Build a staged SchemaFlow pipeline with the OpenAI Agents SDK for database change parsing, impact analysis, rollout planning, SQL generation, guardrails, artifacts, optional File Search grounding, and Promptfoo evals.
date: 2026-06-05
authors:
- shikhar-cyber
- Atharva Joshi
- Mohan Kocherlakota
- Adam Horvath
- Shashwat Jha
tags:
- partners
- agents-sdk
- agents
- evals
- tracing
- promptfoo
- RAG
- structured-outputs
- title: Getting Started with OpenAI Models on Amazon Bedrock
path: examples/partners/AWS/openai_models_with_amazon_bedrock.ipynb
slug: openai-models-with-amazon-bedrock
description: Learn how to invoke an OpenAI-compatible Amazon Bedrock endpoint using the OpenAI Python SDK, along with equivalent cURL examples, and leverage Responses API capabilities available through Amazon Bedrock.
date: 2026-05-31
authors:
- shikhar-cyber
- sudee-oai
tags:
- partners
- responses
- api
- bedrock
- title: Macro Evals for Agentic Systems
path: examples/partners/macro_evals_for_agentic_systems/macro_evals_for_agentic_systems.ipynb
slug: macro-evals-for-agentic-systems
description: A cookbook showing how to evaluate multi-agent systems by clustering trace-level eval signals into recurring behavior patterns and drilling into high-impact patterns.
date: 2026-05-19
authors:
- shikhar-cyber
- Will Thieme
- Bradley Strauss
tags:
- partners
- agents
- evals
- tracing
- promptfoo
- clustering
- title: Evaluating Grounded Spatial Reasoning with GPT-5.5
path: examples/multimodal/grounded_spatial_reasoning_layouts.ipynb
slug: grounded-spatial-reasoning-layouts
description: Build a spec-first floorplan layout workflow with vision, structured outputs, and deterministic spatial evals.
date: 2026-05-11
authors:
- sidrampally-oai
- kathylau-oai
tags:
- images
- vision
- reasoning
- structured-outputs
- evals
- title: Using Goals in Codex
path: examples/codex/using_goals_in_codex.ipynb
slug: using-goals-in-codex
description: Use Goals in Codex to keep long-running work moving toward a persistent, evidence-checked outcome across turns.
date: 2026-05-09
authors:
- rajpathak-openai
- stefanofabbri-oai
tags:
- codex
- goals
- agents
- planning
- title: Building workspace agents in ChatGPT to complete repeatable, end-to-end work
path: articles/chatgpt-agents-sales-meeting-prep.md
slug: chatgpt-agents-sales-meeting-prep
description: Build, test, schedule, and share a ChatGPT workspace agent that prepares sales meeting briefs with calendar, SharePoint, and web search context.
date: 2026-04-22
authors:
- nikhils-oai
tags:
- chatgpt
- agents
- enterprise
- security
- title: Computer Use Agents in Daytona Sandboxes
path: examples/agents_sdk/computer_use_with_daytona/computer_use_with_daytona.ipynb
slug: computer-use-with-daytona
description: Build an Agents SDK agent that uses Computer Use on a Daytona sandbox desktop to fill a multi-section web form end to end.
date: 2026-04-19
authors:
- lpesut-daytona
tags:
- agents-sdk
- agents
- sandbox
- security
- title: Migrate a Legacy Codebase with Sandbox Agents
path: examples/agents_sdk/sandboxed-code-migration/sandboxed_code_migration_agent.ipynb
slug: sandboxed-code-migration-agent
description: Build a sandboxed code-migration agent that splits a modernization campaign into isolated tasks and returns validated patch bundles.
date: 2026-04-07
authors:
- kkahadze-oai
tags:
- agents-sdk
- agents
- sandbox
- security
- evals
- title: Migrate from the Claude Agent SDK to the OpenAI Agents SDK
path: examples/agents_sdk/migrate-from-claude-agent-sdk/README.md
slug: migrate-from-claude-agent-sdk
description: Learn how to migrate Claude Agent SDK applications to the OpenAI Agents SDK, including tool mapping, guardrails, handoffs, approvals, and sandbox boundaries.
date: 2026-05-07
authors:
- anshgupta-oai
tags:
- agents-sdk
- agents
- migration
- sandbox
- security
- title: Agents SDK Deployment Manager
path: examples/agents_sdk/deployment_manager/README.md
slug: agents-sdk-deployment-manager
description: Run, inspect, and trace local Agents SDK demo apps from a browser-based deployment manager.
date: 2026-05-05
authors:
- alfozan
tags:
- agents-sdk
- agents
- tracing
- deployment
- title: Getting the Most out of GPT-5.4 for Vision and Document Understanding
path: examples/multimodal/document_and_multimodal_understanding_tips.ipynb
slug: vision-understanding
description: A practical guide to get the best performance on vision tasks with GPT-5.4.
date: 2026-03-06
authors:
- annikab-oai
- kathylau-oai
- nsingaraju-oai
tags:
- images
- vision
- gpt-5.4
- title: Building Governed AI Agents - A Practical Guide to Agentic Scaffolding
path: examples/partners/agentic_governance_guide/agentic_governance_cookbook.ipynb
slug: agentic-governance-cookbook
description: A practical guide to building governed AI agents with OpenAI Agents SDK and Guardrails.
date: 2026-02-23
authors:
- shikhar-cyber
- Pavan Kumar Muthozu
- Frankie LaCarrubba
tags:
- agents
- tracing
- guardrails
- governance
- evals
- promptfoo
- partners
- security
- title: Realtime Eval Guide
path: examples/Realtime_eval_guide.ipynb
slug: realtime-eval-guide
date: 2026-01-25
authors:
- minh-hoque
tags:
- realtime
- speech
- audio
- responses
- evals
- title: Build your own content fact checker with gpt-oss-120B, Cerebras, and Parallel
path: articles/gpt-oss/build-your-own-fact-checker-cerebras.ipynb
slug: build-your-own-fact-checker-cerebras
description: Cookbook to build a content fact checker with gpt-oss-120B on Cerebras using Parallel.
date: 2026-01-13
authors:
- zhenweig-cerebras
tags:
- gpt-oss
- open-models
- fact-checking
- search
- reasoning
- cerebras
- title: Transcribing User Audio with a Separate Realtime Request
path: examples/Realtime_out_of_band_transcription.ipynb
slug: realtime-out-of-band-transcription
description: Cookbook to transcribe user audio using out-of-band Realtime sessions.
date: 2025-11-20
authors:
- minh-hoque
tags:
- realtime
- transcription
- speech
- audio
- title: Self-Evolving Agents - A Cookbook for Autonomous Agent Retraining
path: examples/partners/self_evolving_agents/autonomous_agent_retraining.ipynb
slug: autonomous-agent-retraining
date: 2025-11-04
authors:
- shikhar-cyber
- Calvin Maguranis
- Valentina Frenkel
- Fanny Perraudeau
- Giorgio Saladino
tags:
- partners
- self-evolving-agents
- evals
- llmops
- prompt-engineering
- agent-retraining
- title: User guide for gpt-oss-safeguard
path: articles/gpt-oss-safeguard-guide.md
slug: gpt-oss-safeguard-guide
date: 2025-10-29
authors:
- roost
tags:
- gpt-oss
- open-models
- guardrails
- title: Build, deploy, and optimize agentic workflows with AgentKit
path: examples/agentkit/agentkit_walkthrough.ipynb
slug: agentkit-walkthrough
date: 2025-10-17
authors:
- nikhils-oai
tags:
- agentkit
- evals
- title: Building with Realtime Mini
path: examples/building_w_rt_mini/building_w_rt_mini.ipynb
slug: building-w-rt-mini
date: 2025-10-11
archived: true
authors:
- carter-oai
tags:
- gpt-realtime-mini
- title: Sora 2 Prompting Guide
path: examples/sora/sora2_prompting_guide.ipynb
slug: sora2-prompting-guide
description: Cookbook to craft effective video prompts for Sora 2 generation.
date: 2026-03-12
authors:
- rkoenig-openai
- joanneshin-openai
- annikab-oai
tags:
- sora
- prompt
- title: Using PLANS.md for multi-hour problem solving
path: articles/codex_exec_plans.md
slug: codex-exec-plans
date: 2025-10-07
authors:
- aaronfriel
tags:
- codex
- gpt-5
- planning
- documentation
- agents
- title: Building Consistent Workflows with Codex CLI & Agents SDK
path: examples/codex/codex_mcp_agents_sdk/building_consistent_workflows_codex_cli_agents_sdk.ipynb
slug: building-consistent-workflows-codex-cli-agents-sdk
date: 2025-10-01
authors:
- jhall-openai
- charlie-openai
tags:
- agents-sdk
- codex
- mcp
- title: GPT-5 Troubleshooting Guide
path: examples/gpt-5/gpt-5_troubleshooting_guide.ipynb
slug: gpt-5-troubleshooting-guide
date: 2025-09-17
authors:
- prashantmital-openai
- bfioca-openai
- carter-oai
tags:
- gpt-5
- prompt-optimization
archived: true
- title: Context Engineering - Short-Term Memory Management with Sessions
path: examples/agents_sdk/session_memory.ipynb
slug: session-memory
date: 2025-09-09
archived: true
authors:
- emreokcular
tags:
- agents-sdk
- title: Automating Code Quality and Security Fixes with Codex CLI on GitLab
path: examples/codex/secure_quality_gitlab.md
slug: secure-quality-gitlab
date: 2025-08-29
authors:
- jonlim-openai
- pap-openai
tags:
- codex
- security
- title: Realtime Prompting Guide
path: examples/Realtime_prompting_guide.ipynb
slug: realtime-prompting-guide
date: 2026-02-25
authors:
- minh-hoque
tags:
- realtime
- speech
- audio
- responses
- title: "Fine-tune gpt-oss for better Korean language performance"
path: articles/gpt-oss/fine-tune-korean.ipynb
slug: fine-tune-korean
date: 2025-08-26
authors:
- heejingithub
- danial-openai
- joanneshin-openai
tags:
- gpt-oss
- open-models
- title: Verifying gpt-oss implementations
path: articles/gpt-oss/verifying-implementations.md
slug: verifying-implementations
date: 2025-08-11
authors:
- dkundel-openai
tags:
- gpt-oss
- open-models
- gpt-oss-providers
- title: How to run gpt-oss locally with LM Studio
path: articles/gpt-oss/run-locally-lmstudio.md
slug: run-locally-lmstudio
date: 2025-08-07
authors:
- yagil
tags:
- gpt-oss
- open-models
- gpt-oss-local
- title: GPT-5 Prompt Migration and Improvement Using the New Optimizer
path: examples/gpt-5/prompt-optimization-cookbook.ipynb
slug: prompt-optimization-cookbook
date: 2025-08-07
authors:
- rajpathak-openai
- corwin
tags:
- gpt-5
- responses
- reasoning
- prompt-optimization
- title: GPT-5 prompting guide
path: examples/gpt-5/gpt-5_prompting_guide.ipynb
slug: gpt-5-prompting-guide
date: 2025-08-07
authors:
- anoop-openai
- julian-openai
- ericzakariasson
- erinkav-openai
tags:
- gpt-5
- responses
- reasoning
- title: Frontend coding with GPT-5
path: examples/gpt-5/gpt-5_frontend.ipynb
slug: gpt-5-frontend
date: 2025-08-07
authors:
- WJPBProjects
- anoop-openai
tags:
- gpt-5
- responses
- reasoning
- title: GPT-5 New Params and Tools
path: examples/gpt-5/gpt-5_new_params_and_tools.ipynb
slug: gpt-5-new-params-and-tools
date: 2025-08-07
authors:
- msingh-openai
tags:
- gpt-5
- functions
- reasoning
- title: How to run gpt-oss-20b on Google Colab
path: articles/gpt-oss/run-colab.ipynb
slug: run-colab
date: 2025-08-06
authors:
- pcuenca
- Vaibhavs10
tags:
- gpt-oss
- open-models
- gpt-oss-server
archived: true
- title: Using NVIDIA TensorRT-LLM to run gpt-oss-20b
path: articles/gpt-oss/run-nvidia.ipynb
slug: run-nvidia
archived: true
date: 2025-08-05
authors:
- jayrodge
tags:
- gpt-oss
- open-models
- gpt-oss-server
- title: Fine-tuning with gpt-oss and Hugging Face Transformers
path: articles/gpt-oss/fine-tune-transfomers.ipynb
slug: fine-tune-transfomers
date: 2025-08-05
authors:
- edbeeching
- qgallouedec
- lewtun
tags:
- open-models
- gpt-oss
- gpt-oss-fine-tuning
- title: How to handle the raw chain of thought in gpt-oss
path: articles/gpt-oss/handle-raw-cot.md
slug: handle-raw-cot
date: 2025-08-05
authors:
- dkundel-openai
tags:
- open-models
- gpt-oss
- gpt-oss-fine-tuning
- gpt-oss-providers
- title: How to run gpt-oss with Transformers
path: articles/gpt-oss/run-transformers.md
slug: run-transformers
date: 2025-08-05
authors:
- dkundel-openai
tags:
- open-models
- gpt-oss
- gpt-oss-server
- title: How to run gpt-oss with vLLM
path: articles/gpt-oss/run-vllm.md
slug: run-vllm
date: 2025-08-05
authors:
- dkundel-openai
tags:
- open-models
- gpt-oss
- gpt-oss-server
- title: How to run gpt-oss locally with Ollama
path: articles/gpt-oss/run-locally-ollama.md
slug: run-locally-ollama
date: 2025-08-05
authors:
- dkundel-openai
tags:
- open-models
- gpt-oss
- gpt-oss-local
- title: OpenAI Harmony Response Format
path: articles/openai-harmony.md
slug: openai-harmony
date: 2025-08-05
authors:
- dkundel-openai
tags:
- open-models
- gpt-oss
- harmony
- gpt-oss-providers
- gpt-oss-fine-tuning
- title: Temporal Agents with Knowledge Graphs
path: examples/partners/temporal_agents_with_knowledge_graphs/temporal_agents.ipynb
slug: temporal-agents
date: 2025-07-22
authors:
- dwigg-openai
- shikhar-cyber
- Alex Heald
- Douglas Adams
- Rishabh Sagar
tags:
- knowledge-graphs
- retrieval
- functions
- responses
- title: Using Evals API on Image Inputs
path: examples/evaluation/use-cases/EvalsAPI_Image_Inputs.ipynb
slug: evalsapi-image-inputs
date: 2025-07-15
authors:
- daisyshe-oai
tags:
- evals
- images
archived: true
- title: Using Evals API on Audio Inputs
path: examples/evaluation/use-cases/EvalsAPI_Audio_Inputs.ipynb
slug: evalsapi-audio-inputs
date: 2025-08-13
authors:
- hendrytl
tags:
- evals
- audio
archived: true
- title: Optimize Prompts
path: examples/Optimize_Prompts.ipynb
slug: optimize-prompts
date: 2025-07-14
authors:
- corwin
tags:
- prompt
- completions
- responses
- agents-sdk
- tracing
- title: Automate Jira ↔ GitHub with Codex
path: examples/codex/jira-github.ipynb
slug: jira-github
date: 2025-06-21
authors:
- alwell-kevin
- narenoai
tags:
- codex
- automation
- title: Prompt Migration Guide
path: examples/Prompt_migration_guide.ipynb
slug: prompt-migration-guide
date: 2025-06-26
authors:
- minh-hoque
- corwin
tags:
- prompt
- completions
- responses
- title: Fine-Tuning Techniques - Choosing Between SFT, DPO, and RFT (With a Guide to DPO)
path: examples/Fine_tuning_direct_preference_optimization_guide.ipynb
slug: fine-tuning-direct-preference-optimization-guide
date: 2025-06-18
authors:
- alexl-oai
tags:
- fine-tuning
- title: MCP-Powered Agentic Voice Framework
path: examples/partners/mcp_powered_voice_agents/mcp_powered_agents_cookbook.ipynb
slug: mcp-powered-agents-cookbook
date: 2025-06-17
authors:
- shikhar-cyber
- Cece Z
- Sibon li
tags:
- mcp
- speech
- agents-sdk
- functions
- tracing
- title: Building a Supply-Chain Copilot with OpenAI Agent SDK and Databricks MCP Servers
path: examples/mcp/databricks_mcp_cookbook.ipynb
slug: databricks-mcp-cookbook
date: 2025-07-08
authors:
- lara-openai
tags:
- agents-sdk
- mcp
- tracing
- security
- title: Eval Driven System Design - From Prototype to Production
path: examples/partners/eval_driven_system_design/receipt_inspection.ipynb
slug: receipt-inspection
description: Cookbook for eval-driven design of a receipt parsing automation workflow.
date: 2025-06-02
authors:
- shikhar-cyber
- Hugh Wimberly
- Joshua Marker
- Eddie Siegel
tags:
- evals
- API Flywheel
- completions
- responses
- functions
- tracing
- title: Multi-Agent Portfolio Collaboration with OpenAI Agents SDK
path: examples/agents_sdk/multi-agent-portfolio-collaboration/multi_agent_portfolio_collaboration.ipynb
slug: multi-agent-portfolio-collaboration
description: Cookbook for multi-agent portfolio analysis workflows using the OpenAI Agents SDK.
date: 2025-05-28
authors:
- rajpathak-openai
- chelseahu-openai
tags:
- agents-sdk
- functions
- responses
- mutli-agent-collaboration
- title: o3/o4-mini Function Calling Guide
path: examples/o-series/o3o4-mini_prompting_guide.ipynb
slug: o3o4-mini-prompting-guide
description: Cookbook to improve o3/o4-mini function calling with prompt best practices.
archived: true
date: 2025-05-26
authors:
- billchen-openai
- prashantmital-openai
tags:
- functions
- responses
- reasoning
- title: Exploring Model Graders for Reinforcement Fine-Tuning
path: examples/Reinforcement_Fine_Tuning.ipynb
slug: reinforcement-fine-tuning
description: Cookbook to use model graders for reinforcement fine-tuning in expert tasks.
date: 2025-05-23
authors:
- theophile-oai
tags:
- reinforcement-learning
- fine-tuning
- reinforcement-learning-graders
- title: Reinforcement Fine-Tuning for Conversational Reasoning with the OpenAI API
path: examples/fine-tuned_qa/reinforcement_finetuning_healthbench.ipynb
slug: reinforcement-finetuning-healthbench
description: Cookbook for reinforcement fine-tuning conversational reasoning using HealthBench evaluations.
date: 2025-05-21
authors:
- robert-tinn
tags:
- fine-tuning
- qa
- evals
- reinforcement
- title: Guide to Using the Responses API's MCP Tool
path: examples/mcp/mcp_tool_guide.ipynb
slug: mcp-tool-guide
description: Cookbook to connect external services using the Responses API MCP tool.
date: 2025-05-21
authors:
- charuj
tags:
- mcp
- security
- title: Image Understanding with RAG
path: examples/multimodal/image_understanding_with_rag.ipynb
slug: image-understanding-with-rag
date: 2025-05-16
authors:
- robert-tinn
tags:
- responses
- images
- RAG
- vision
- title: Better performance from reasoning models using the Responses API
path: examples/responses_api/reasoning_items.ipynb
slug: reasoning-items
date: 2025-05-11
authors:
- billchen-openai
tags:
- responses
- functions
- title: Context Summarization with Realtime API
path: examples/Context_summarization_with_realtime_api.ipynb
slug: context-summarization-with-realtime-api
date: 2025-05-10
authors:
- minh-hoque
tags:
- audio
- speech
- tiktoken
- title: Comparing Speech-to-Text Methods with the OpenAI API
path: examples/Speech_transcription_methods.ipynb
slug: speech-transcription-methods
description: Cookbook to compare speech-to-text methods and choose the right approach.
date: 2025-04-29
authors:
- minh-hoque
tags:
- audio
- speech
- agents-sdk
- title: Practical Guide for Model Selection for Real‑World Use Cases
path: examples/partners/model_selection_guide/model_selection_guide.ipynb
slug: model-selection-guide
date: 2025-05-07
authors:
- shikhar-cyber
- kashyapm-tribe
- saip-tribe
- nharada-tribe
tags:
- responses
- functions
- web-search
- tool calling
- RAG
- insurance
- legal
- pharma
- title: Evals API Use-case - Detecting prompt regressions
path: examples/evaluation/use-cases/regression.ipynb
slug: regression
date: 2025-04-08
authors:
- josiah-openai
tags:
- evals
- completions
archived: true
- title: Evals API Use-case - Bulk model and prompt experimentation
path: examples/evaluation/use-cases/bulk-experimentation.ipynb
slug: bulk-experimentation
date: 2025-04-08
authors:
- josiah-openai
tags:
- evals
- completions
archived: true
- title: Evals API Use-case - Monitoring stored completions
path: examples/evaluation/use-cases/completion-monitoring.ipynb
slug: completion-monitoring
date: 2025-04-08
authors:
- josiah-openai
tags:
- evals
- completions
archived: true
- title: Evals API Use-case - Responses Evaluation
path: examples/evaluation/use-cases/responses-evaluation.ipynb
slug: responses-evaluation
description: Cookbook to evaluate new models against stored Responses API logs.
date: 2025-05-13
authors:
- willhath-openai
tags:
- evals
- responses
archived: true
- title: Multi-Tool Orchestration with RAG approach using OpenAI's Responses API
path: examples/responses_api/responses_api_tool_orchestration.ipynb
slug: responses-api-tool-orchestration
description: Cookbook to route queries across tools with RAG using the Responses API.
date: 2025-03-28
authors:
- shikhar-cyber
tags:
- responses
- functions
- pinecone
- web-search
- title: Automating Dispute Management with Agents SDK and Stripe API
path: examples/agents_sdk/dispute_agent.ipynb
slug: dispute-agent
archived: true
date: 2025-03-17
authors:
- danbell-openai
tags:
- responses
- agents-sdk
- functions
- title: Web Search and States with Responses API
path: examples/responses_api/responses_example.ipynb
slug: responses-example
date: 2025-03-11
authors:
- billchen-openai
tags:
- responses
- web-search
- functions
- title: Using logprobs
path: examples/Using_logprobs.ipynb
slug: using-logprobs
date: 2023-12-20
authors:
- jhills20
- shyamal-anadkat
tags:
- completions
- title: Creating slides with the Assistants API and DALL·E 3
path: examples/Creating_slides_with_Assistants_API_and_DALL-E3.ipynb
slug: creating-slides-with-assistants-api-and-dall-e3
date: 2023-12-08
authors:
- jhills20
tags:
- assistants
- dall-e
archived: true
- title: Data preparation and analysis for chat model fine-tuning
path: examples/Chat_finetuning_data_prep.ipynb
slug: chat-finetuning-data-prep
date: 2023-08-22
authors:
- mwu1993
- simonpfish
tags:
- completions
- tiktoken
- fine-tuning
archived: true
- title: Classification using embeddings
path: examples/Classification_using_embeddings.ipynb
slug: classification-using-embeddings
date: 2022-07-11
authors:
- ted-at-openai
- logankilpatrick
tags:
- embeddings
- title: Clustering
path: examples/Clustering.ipynb
slug: clustering
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
- logankilpatrick
tags:
- embeddings
- title: Clustering for transaction classification
path: examples/Clustering_for_transaction_classification.ipynb
slug: clustering-for-transaction-classification
date: 2022-10-20
authors:
- colin-openai
- ted-at-openai
tags:
- embeddings
- completions
- title: Code search using embeddings
path: examples/Code_search_using_embeddings.ipynb
slug: code-search-using-embeddings
date: 2022-03-10
authors:
- BorisPower
- logankilpatrick
- eli64s
tags:
- embeddings
- title: Customizing embeddings
path: examples/Customizing_embeddings.ipynb
slug: customizing-embeddings
date: 2022-03-10
authors:
- ted-at-openai
- BorisPower
tags:
- embeddings
- title: Embedding Wikipedia articles for search
path: examples/Embedding_Wikipedia_articles_for_search.ipynb
slug: embedding-wikipedia-articles-for-search
date: 2024-11-26
authors:
- ted-at-openai
tags:
- embeddings
- completions
- title: Embedding texts that are longer than the model's maximum context length
path: examples/Embedding_long_inputs.ipynb
slug: embedding-long-inputs
date: 2023-01-18
authors:
- filipeabperes
tags:
- embeddings
- tiktoken