openai-cookbook

Форк
0
/
registry.yaml 
1244 строки · 27.7 Кб
1
# yaml-language-server: $schema=./.github/registry_schema.json
2

3
# This file is used to generate cookbook.openai.com. It specifies which paths we
4
# should build pages for, and indicates metadata such as tags, creation date and
5
# authors for each page.
6

7

8
- title: Using logprobs
9
  path: examples/Using_logprobs.ipynb
10
  date: 2023-12-20
11
  authors:
12
    - jhills20
13
    - shyamal-anadkat
14
  tags:
15
    - completions
16

17
- title: Creating slides with the Assistants API and DALL·E 3
18
  path: examples/Creating_slides_with_Assistants_API_and_DALL-E3.ipynb
19
  date: 2023-12-08
20
  authors:
21
    - jhills20
22
  tags:
23
    - assistants
24
    - dall-e
25

26
- title: Data preparation and analysis for chat model fine-tuning
27
  path: examples/Chat_finetuning_data_prep.ipynb
28
  date: 2023-08-22
29
  authors:
30
    - mwu1993
31
    - simonpfish
32
  tags:
33
    - completions
34
    - tiktoken
35

36
- title: Classification using embeddings
37
  path: examples/Classification_using_embeddings.ipynb
38
  date: 2022-07-11
39
  authors:
40
    - ted-at-openai
41
    - logankilpatrick
42
  tags:
43
    - embeddings
44

45
- title: Clustering
46
  path: examples/Clustering.ipynb
47
  date: 2022-03-10
48
  authors:
49
    - BorisPower
50
    - ted-at-openai
51
    - logankilpatrick
52
  tags:
53
    - embeddings
54

55
- title: Clustering for transaction classification
56
  path: examples/Clustering_for_transaction_classification.ipynb
57
  date: 2022-10-20
58
  authors:
59
    - colin-jarvis
60
    - ted-at-openai
61
  tags:
62
    - embeddings
63
    - completions
64

65
- title: Code search using embeddings
66
  path: examples/Code_search_using_embeddings.ipynb
67
  date: 2022-03-10
68
  authors:
69
    - BorisPower
70
    - logankilpatrick
71
    - eli64s
72
  tags:
73
    - embeddings
74

75
- title: Customizing embeddings
76
  path: examples/Customizing_embeddings.ipynb
77
  date: 2022-03-10
78
  authors:
79
    - ted-at-openai
80
    - BorisPower
81
  tags:
82
    - embeddings
83

84
- title: Embedding Wikipedia articles for search
85
  path: examples/Embedding_Wikipedia_articles_for_search.ipynb
86
  date: 2023-04-14
87
  authors:
88
    - ted-at-openai
89
  tags:
90
    - embeddings
91
    - completions
92

93
- title: Embedding texts that are longer than the model's maximum context length
94
  path: examples/Embedding_long_inputs.ipynb
95
  date: 2023-01-18
96
  authors:
97
    - filipeabperes
98
  tags:
99
    - embeddings
100
    - tiktoken
101

102
- title: Long document content extraction
103
  path: examples/Entity_extraction_for_long_documents.ipynb
104
  date: 2023-02-20
105
  authors:
106
    - colin-openai
107
  tags:
108
    - completions
109

110
- title: Fine tuning classification example
111
  path: examples/Fine-tuned_classification.ipynb
112
  date: 2022-03-10
113
  authors:
114
    - BorisPower
115
  tags:
116
    - completions
117

118
- title: >-
119
    Function calling for nearby places: Leveraging the Google Places API and
120
    customer profiles
121
  path: examples/Function_calling_finding_nearby_places.ipynb
122
  date: 2023-08-11
123
  authors:
124
    - prestontuggle
125
  tags:
126
    - completions
127
    - functions
128

129
- title: Using embeddings
130
  path: examples/Using_embeddings.ipynb
131
  date: 2022-03-10
132
  authors:
133
    - BorisPower
134
    - ted-at-openai
135
    - logankilpatrick
136
    - jbeutler-openai
137
  tags:
138
    - embeddings
139

140
- title: How to build a tool-using agent with LangChain
141
  path: examples/How_to_build_a_tool-using_agent_with_Langchain.ipynb
142
  date: 2023-05-02
143
  authors:
144
    - colin-openai
145
  tags:
146
    - completions
147
    - embeddings
148

149
- title: How to use functions with a knowledge base
150
  path: examples/How_to_call_functions_for_knowledge_retrieval.ipynb
151
  date: 2023-06-14
152
  authors:
153
    - colin-openai
154
  tags:
155
    - completions
156
    - functions
157

158
- title: How to call functions with chat models
159
  path: examples/How_to_call_functions_with_chat_models.ipynb
160
  date: 2023-06-13
161
  authors:
162
    - colin-openai
163
    - joe-at-openai
164
  tags:
165
    - completions
166
    - functions
167

168
- title: How to count tokens with Tiktoken
169
  path: examples/How_to_count_tokens_with_tiktoken.ipynb
170
  date: 2022-12-16
171
  authors:
172
    - ted-at-openai
173
  tags:
174
    - tiktoken
175
    - completions
176

177
- title: How to fine-tune chat models
178
  path: examples/How_to_finetune_chat_models.ipynb
179
  date: 2023-08-22
180
  authors:
181
    - simonpfish
182
  tags:
183
    - completions
184

185
- title: How to format inputs to ChatGPT models
186
  path: examples/How_to_format_inputs_to_ChatGPT_models.ipynb
187
  date: 2023-03-01
188
  authors:
189
    - ted-at-openai
190
  tags:
191
    - completions
192
    - tiktoken
193

194
- title: How to handle rate limits
195
  path: examples/How_to_handle_rate_limits.ipynb
196
  date: 2022-09-10
197
  authors:
198
    - ted-at-openai
199
  tags:
200
    - completions
201
    - embeddings
202

203
- title: How to stream completions
204
  path: examples/How_to_stream_completions.ipynb
205
  date: 2022-09-02
206
  authors:
207
    - ted-at-openai
208
  tags:
209
    - completions
210
    - tiktoken
211

212
- title: Multiclass Classification for Transactions
213
  path: examples/Multiclass_classification_for_transactions.ipynb
214
  date: 2022-10-20
215
  authors:
216
    - colin-jarvis
217
  tags:
218
    - embeddings
219
    - completions
220

221
- title: Get embeddings from dataset
222
  path: examples/Get_embeddings_from_dataset.ipynb
223
  date: 2022-03-10
224
  authors:
225
    - BorisPower
226
    - ted-at-openai
227
  tags:
228
    - embeddings
229

230
- title: Question answering using a search API and re-ranking
231
  path: examples/Question_answering_using_a_search_API.ipynb
232
  date: 2023-06-16
233
  authors:
234
    - simonpfish
235
    - ted-at-openai
236
  tags:
237
    - embeddings
238
    - completions
239

240
- title: Question answering using embeddings-based search
241
  path: examples/Question_answering_using_embeddings.ipynb
242
  date: 2022-06-10
243
  authors:
244
    - ted-at-openai
245
    - MikeHeaton
246
  tags:
247
    - embeddings
248
    - completions
249

250
- title: Recommendation using embeddings and nearest neighbor search
251
  path: examples/Recommendation_using_embeddings.ipynb
252
  date: 2022-03-10
253
  authors:
254
    - ted-at-openai
255
    - BorisPower
256
    - logankilpatrick
257
  tags:
258
    - embeddings
259

260
- title: Regression using the embeddings
261
  path: examples/Regression_using_embeddings.ipynb
262
  date: 2022-03-10
263
  authors:
264
    - BorisPower
265
    - ted-at-openai
266
    - logankilpatrick
267
  tags:
268
    - embeddings
269

270
- title: Search reranking with cross-encoders
271
  path: examples/Search_reranking_with_cross-encoders.ipynb
272
  date: 2023-06-28
273
  authors:
274
    - colin-openai
275
  tags:
276
    - embeddings
277
    - completions
278

279
- title: Semantic text search using embeddings
280
  path: examples/Semantic_text_search_using_embeddings.ipynb
281
  date: 2022-03-10
282
  authors:
283
    - BorisPower
284
    - ted-at-openai
285
    - logankilpatrick
286
  tags:
287
    - embeddings
288

289
- title: Unit test writing using a multi-step prompt
290
  path: examples/Unit_test_writing_using_a_multi-step_prompt.ipynb
291
  date: 2022-11-15
292
  authors:
293
    - ted-at-openai
294
  tags:
295
    - completions
296

297
- title: Unit test writing using a multi-step prompt with legacy Completions
298
  path: >-
299
    examples/Unit_test_writing_using_a_multi-step_prompt_with_older_completions_API.ipynb
300
  date: 2023-05-19
301
  authors:
302
    - ted-at-openai
303
  tags:
304
    - completions
305

306
- title: User and product embeddings
307
  path: examples/User_and_product_embeddings.ipynb
308
  date: 2022-03-10
309
  authors:
310
    - BorisPower
311
  tags:
312
    - embeddings
313

314
- title: Visualizing the embeddings in 2D
315
  path: examples/Visualizing_embeddings_in_2D.ipynb
316
  date: 2022-03-10
317
  authors:
318
    - BorisPower
319
    - ted-at-openai
320
  tags:
321
    - embeddings
322

323
- title: Visualizing embeddings in 3D
324
  path: examples/Visualizing_embeddings_in_3D.ipynb
325
  date: 2022-03-10
326
  authors:
327
    - BorisPower
328
    - ted-at-openai
329
  tags:
330
    - embeddings
331

332
- title: Visualizing embeddings in Weights and Biases
333
  path: examples/third_party/Visualizing_embeddings_in_wandb.ipynb
334
  date: 2023-02-01
335
  authors:
336
    - scottire
337
  tags:
338
    - embeddings
339

340
- title: Visualizing embeddings in Atlas
341
  path: examples/third_party/Visualizing_embeddings_with_Atlas.ipynb
342
  date: 2023-03-28
343
  authors:
344
    - AndriyMulyar
345
    - TDulka
346
  tags:
347
    - embeddings
348

349
- title: "Addressing transcription misspellings: prompt vs post-processing"
350
  path: examples/Whisper_correct_misspelling.ipynb
351
  date: 2023-08-11
352
  authors:
353
    - prestontuggle
354
  tags:
355
    - whisper
356
    - completions
357

358
- title: "Enhancing Whisper transcriptions: pre- & post-processing techniques"
359
  path: examples/Whisper_processing_guide.ipynb
360
  date: 2023-08-11
361
  authors:
362
    - prestontuggle
363
  tags:
364
    - whisper
365

366
- title: Whisper prompting guide
367
  path: examples/Whisper_prompting_guide.ipynb
368
  date: 2023-06-27
369
  authors:
370
    - prestontuggle
371
  tags:
372
    - whisper
373
    - completions
374

375
- title: Zero-shot classification with embeddings
376
  path: examples/Zero-shot_classification_with_embeddings.ipynb
377
  date: 2022-03-10
378
  authors:
379
    - BorisPower
380
    - ted-at-openai
381
    - logankilpatrick
382
  tags:
383
    - embeddings
384

385
- title: Azure DALL·E image generation example
386
  path: examples/azure/DALL-E.ipynb
387
  date: 2023-06-12
388
  authors:
389
    - glecaros
390
  tags:
391
    - dall-e
392

393
- title: Azure Chat Completions example (preview)
394
  path: examples/azure/chat.ipynb
395
  date: 2023-03-28
396
  authors:
397
    - cmurtz-msft
398
    - glecaros
399
    - kristapratico
400
  tags:
401
    - completions
402

403
- title: Azure Chat Completion models with your own data (preview)
404
  path: examples/azure/chat_with_your_own_data.ipynb
405
  date: 2023-09-11
406
  authors:
407
    - kristapratico
408
  tags:
409
    - completions
410

411
- title: Azure completions example
412
  path: examples/azure/completions.ipynb
413
  date: 2022-12-16
414
  authors:
415
    - cmurtz-msft
416
    - glecaros
417
    - kristapratico
418
  tags:
419
    - embeddings
420
    - completions
421

422
- title: Azure embeddings example
423
  path: examples/azure/embeddings.ipynb
424
  date: 2022-07-12
425
  authors:
426
    - ted-at-openai
427
    - cmurtz-msft
428
    - glecaros
429
    - kristapratico
430
  tags:
431
    - embeddings
432

433
- title: Azure functions example
434
  path: examples/azure/functions.ipynb
435
  date: 2023-07-21
436
  authors:
437
    - kristapratico
438
  tags:
439
    - completions
440
    - functions
441

442
- title: Translate a book writen in LaTeX from Slovenian into English
443
  path: examples/book_translation/translate_latex_book.ipynb
444
  date: 2022-03-10
445
  authors:
446
    - BorisPower
447
  tags:
448
    - completions
449
    - tiktoken
450

451
- title: How to create dynamic masks with DALL·E and Segment Anything
452
  path: >-
453
    examples/dalle/How_to_create_dynamic_masks_with_DALL-E_and_Segment_Anything.ipynb
454
  date: 2023-05-19
455
  authors:
456
    - colin-openai
457
  tags:
458
    - dall-e
459

460
- title: How to use the DALL·E API
461
  path: examples/dalle/Image_generations_edits_and_variations_with_DALL-E.ipynb
462
  date: 2022-11-04
463
  authors:
464
    - ted-at-openai
465
  tags:
466
    - dall-e
467

468
- title: How to evaluate a summarization task
469
  path: examples/evaluation/How_to_eval_abstractive_summarization.ipynb
470
  date: 2023-08-16
471
  authors:
472
    - shyamal-anadkat
473
    - simonpfish
474
  tags:
475
    - embeddings
476
    - completions
477

478
- title: Getting Started with OpenAI Evals
479
  path: examples/evaluation/Getting_Started_with_OpenAI_Evals.ipynb
480
  date: 2024-03-21
481
  authors:
482
    - royziv11
483
    - shyamal-anadkat
484
  tags:
485
    - completions
486

487
- title: Fine-Tuned Q&A - collect data
488
  path: examples/fine-tuned_qa/olympics-1-collect-data.ipynb
489
  date: 2022-03-10
490
  authors:
491
    - ted-at-openai
492
    - BorisPower
493
  tags:
494
    - embeddings
495
    - completions
496

497
- title: Fine-Tuned Q&A - create Q&A
498
  path: examples/fine-tuned_qa/olympics-2-create-qa.ipynb
499
  date: 2022-03-10
500
  authors:
501
    - ted-at-openai
502
    - BorisPower
503
  tags:
504
    - embeddings
505
    - completions
506

507
- title: Fine-Tuned Q&A - train
508
  path: examples/fine-tuned_qa/olympics-3-train-qa.ipynb
509
  date: 2022-03-10
510
  authors:
511
    - ted-at-openai
512
    - BorisPower
513
  tags:
514
    - completions
515
    - embeddings
516

517
- title: Visualizing the embeddings in Kangas
518
  path: examples/third_party/Visualizing_embeddings_in_Kangas.ipynb
519
  date: 2023-07-11
520
  authors:
521
    - dsblank
522
  tags:
523
    - embeddings
524

525
- title: Financial document analysis with LlamaIndex
526
  path: >-
527
    examples/third_party/financial_document_analysis_with_llamaindex.ipynb
528
  date: 2023-06-22
529
  authors:
530
    - Disiok
531
  tags:
532
    - embeddings
533
    - completions
534

535
- title: Vector databases
536
  path: examples/vector_databases/README.md
537
  date: 2023-06-28
538
  authors:
539
    - colin-openai
540
    - moizsajid
541
  tags:
542
    - embeddings
543

544
- title: Using PolarDB-PG as a vector database for OpenAI embeddings
545
  path: >-
546
    examples/vector_databases/PolarDB/Getting_started_with_PolarDB_and_OpenAI.ipynb
547
  date: 2023-07-11
548
  authors:
549
    - liuchengshan-lcs
550
  tags:
551
    - embeddings
552

553
- title: Semantic search with SingleStoreDB
554
  path: >-
555
    examples/vector_databases/SingleStoreDB/OpenAI_wikipedia_semantic_search.ipynb
556
  date: 2023-05-22
557
  authors:
558
    - arno756
559
  tags:
560
    - completions
561
    - embeddings
562

563
- title: SingleStoreDB
564
  path: examples/vector_databases/SingleStoreDB/README.md
565
  date: 2023-05-22
566
  authors:
567
    - arno756
568
  tags:
569
    - embeddings
570
    - completions
571

572
- title: Using AnalyticDB as a vector database for OpenAI embeddings
573
  path: >-
574
    examples/vector_databases/analyticdb/Getting_started_with_AnalyticDB_and_OpenAI.ipynb
575
  date: 2023-04-06
576
  authors:
577
    - wangxuqi
578
  tags:
579
    - embeddings
580

581
- title: Question answering with Langchain, AnalyticDB and OpenAI
582
  path: >-
583
    examples/vector_databases/analyticdb/QA_with_Langchain_AnalyticDB_and_OpenAI.ipynb
584
  date: 2023-05-05
585
  authors:
586
    - wangxuqi
587
  tags:
588
    - embeddings
589
    - tiktoken
590

591
- title: Azure AI Search as a vector database for OpenAI embeddings
592
  path: >-
593
    examples/vector_databases/azuresearch/Getting_started_with_azure_ai_search_and_openai.ipynb
594
  date: 2023-09-11
595
  authors:
596
    - farzad528
597
  tags:
598
    - embeddings
599

600
- title: Philosophy with vector embeddings, OpenAI and Cassandra / Astra DB
601
  path: examples/vector_databases/cassandra_astradb/Philosophical_Quotes_CQL.ipynb
602
  date: 2023-08-29
603
  authors:
604
    - hemidactylus
605
  tags:
606
    - embeddings
607
    - completions
608

609
- title: Philosophy with vector embeddings, OpenAI and Cassandra / Astra DB
610
  path: >-
611
    examples/vector_databases/cassandra_astradb/Philosophical_Quotes_cassIO.ipynb
612
  date: 2023-08-29
613
  authors:
614
    - hemidactylus
615
  tags:
616
    - embeddings
617
    - completions
618

619
- title: Cassandra / Astra DB
620
  path: examples/vector_databases/cassandra_astradb/README.md
621
  date: 2023-08-29
622
  authors:
623
    - hemidactylus
624
  tags:
625
    - embeddings
626

627
- title: Using Chroma for embeddings search
628
  path: examples/vector_databases/chroma/Using_Chroma_for_embeddings_search.ipynb
629
  date: 2023-06-28
630
  authors:
631
    - colin-openai
632
    - atroyn
633
  tags:
634
    - embeddings
635

636
- title: Robust question answering with Chroma and OpenAI
637
  path: examples/vector_databases/chroma/hyde-with-chroma-and-openai.ipynb
638
  date: 2023-04-06
639
  authors:
640
    - atroyn
641
  tags:
642
    - embeddings
643
    - completions
644

645
- title: Elasticsearch
646
  path: examples/vector_databases/elasticsearch/README.md
647
  date: 2023-08-29
648
  authors:
649
    - leemthompo
650
  tags:
651
    - embeddings
652
    - completions
653

654
- title: Retrieval augmented generation using Elasticsearch and OpenAI
655
  path: >-
656
    examples/vector_databases/elasticsearch/elasticsearch-retrieval-augmented-generation.ipynb
657
  date: 2023-08-29
658
  authors:
659
    - leemthompo
660
  tags:
661
    - embeddings
662
    - completions
663

664
- title: Semantic search using Elasticsearch and OpenAI
665
  path: examples/vector_databases/elasticsearch/elasticsearch-semantic-search.ipynb
666
  date: 2023-08-29
667
  authors:
668
    - leemthompo
669
  tags:
670
    - embeddings
671
    - completions
672

673
- title: Using Hologres as a vector database for OpenAI embeddings
674
  path: >-
675
    examples/vector_databases/hologres/Getting_started_with_Hologres_and_OpenAI.ipynb
676
  date: 2023-05-19
677
  authors:
678
    - zcgeng
679
  tags:
680
    - embeddings
681

682
- title: Kusto as a vector database for embeddings
683
  path: >-
684
    examples/vector_databases/kusto/Getting_started_with_kusto_and_openai_embeddings.ipynb
685
  date: 2023-05-10
686
  authors:
687
    - Anshul Sharma
688
  tags:
689
    - embeddings
690

691
- title: Kusto as a vector database
692
  path: examples/vector_databases/kusto/README.md
693
  date: 2023-05-10
694
  authors:
695
    - Anshul Sharma
696
  tags:
697
    - embeddings
698

699
- title: Filtered search with Milvus and OpenAI
700
  path: >-
701
    examples/vector_databases/milvus/Filtered_search_with_Milvus_and_OpenAI.ipynb
702
  date: 2023-03-28
703
  authors:
704
    - filip-halt
705
  tags:
706
    - embeddings
707

708
- title: Getting started with Milvus and OpenAI
709
  path: >-
710
    examples/vector_databases/milvus/Getting_started_with_Milvus_and_OpenAI.ipynb
711
  date: 2023-03-28
712
  authors:
713
    - filip-halt
714
  tags:
715
    - embeddings
716

717
- title: Using MyScale as a vector database for OpenAI embeddings
718
  path: >-
719
    examples/vector_databases/myscale/Getting_started_with_MyScale_and_OpenAI.ipynb
720
  date: 2023-05-01
721
  authors:
722
    - melovy
723
  tags:
724
    - embeddings
725

726
- title: Using MyScale for embeddings search
727
  path: examples/vector_databases/myscale/Using_MyScale_for_embeddings_search.ipynb
728
  date: 2023-06-28
729
  authors:
730
    - colin-openai
731
  tags:
732
    - embeddings
733

734
- title: Retrieval augmentation for GPT-4 using Pinecone
735
  path: examples/vector_databases/pinecone/GPT4_Retrieval_Augmentation.ipynb
736
  date: 2023-03-24
737
  authors:
738
    - jamescalam
739
  tags:
740
    - embeddings
741
    - completions
742
    - tiktoken
743

744
- title: Retrieval augmented generative question answering with Pinecone
745
  path: examples/vector_databases/pinecone/Gen_QA.ipynb
746
  date: 2023-02-07
747
  authors:
748
    - jamescalam
749
  tags:
750
    - embeddings
751
    - completions
752

753
- title: Pinecone vector database
754
  path: examples/vector_databases/pinecone/README.md
755
  date: 2023-03-24
756
  authors:
757
    - jamescalam
758
  tags:
759
    - embeddings
760
    - completions
761

762
- title: Semantic search with Pinecone and OpenAI
763
  path: examples/vector_databases/pinecone/Semantic_Search.ipynb
764
  date: 2023-03-24
765
  authors:
766
    - jamescalam
767
  tags:
768
    - embeddings
769

770
- title: Using Pinecone for embeddings search
771
  path: >-
772
    examples/vector_databases/pinecone/Using_Pinecone_for_embeddings_search.ipynb
773
  date: 2023-06-28
774
  authors:
775
    - colin-openai
776
  tags:
777
    - embeddings
778

779
- title: Using Qdrant as a vector database for OpenAI embeddings
780
  path: >-
781
    examples/vector_databases/qdrant/Getting_started_with_Qdrant_and_OpenAI.ipynb
782
  date: 2023-02-16
783
  authors:
784
    - kacperlukawski
785
  tags:
786
    - embeddings
787

788
- title: Question answering with Langchain, Qdrant and OpenAI
789
  path: examples/vector_databases/qdrant/QA_with_Langchain_Qdrant_and_OpenAI.ipynb
790
  date: 2023-02-16
791
  authors:
792
    - kacperlukawski
793
  tags:
794
    - embeddings
795

796
- title: Using Qdrant for embeddings search
797
  path: examples/vector_databases/qdrant/Using_Qdrant_for_embeddings_search.ipynb
798
  date: 2023-06-28
799
  authors:
800
    - colin-openai
801
    - kacperlukawski
802
  tags:
803
    - embeddings
804

805
- title: Redis
806
  path: examples/vector_databases/redis/README.md
807
  date: 2023-02-13
808
  authors:
809
    - Spartee
810
  tags:
811
    - embeddings
812
    - completions
813

814
- title: Using Redis for embeddings search
815
  path: examples/vector_databases/redis/Using_Redis_for_embeddings_search.ipynb
816
  date: 2023-06-28
817
  authors:
818
    - colin-openai
819
  tags:
820
    - embeddings
821

822
- title: Using Redis as a vector database with OpenAI
823
  path: examples/vector_databases/redis/getting-started-with-redis-and-openai.ipynb
824
  date: 2023-02-13
825
  authors:
826
    - Spartee
827
  tags:
828
    - embeddings
829

830
- title: Running hybrid VSS queries with Redis and OpenAI
831
  path: examples/vector_databases/redis/redis-hybrid-query-examples.ipynb
832
  date: 2023-05-11
833
  authors:
834
    - Michael Yuan
835
  tags:
836
    - embeddings
837

838
- title: Redis vectors as JSON with OpenAI
839
  path: examples/vector_databases/redis/redisjson/redisjson.ipynb
840
  date: 2023-05-10
841
  authors:
842
    - Michael Yuan
843
  tags:
844
    - embeddings
845

846
- title: Redis as a context store with Chat Completions
847
  path: examples/vector_databases/redis/redisqna/redisqna.ipynb
848
  date: 2023-05-11
849
  authors:
850
    - Michael Yuan
851
  tags:
852
    - completions
853
    - embeddings
854

855
- title: Using Tair as a vector database for OpenAI embeddings
856
  path: examples/vector_databases/tair/Getting_started_with_Tair_and_OpenAI.ipynb
857
  date: 2023-09-11
858
  authors:
859
    - dongqqcom
860
  tags:
861
    - embeddings
862

863
- title: Question answering with Langchain, Tair and OpenAI
864
  path: examples/vector_databases/tair/QA_with_Langchain_Tair_and_OpenAI.ipynb
865
  date: 2023-09-11
866
  authors:
867
    - dongqqcom
868
  tags:
869
    - embeddings
870
    - tiktoken
871
    - completions
872

873
- title: Typesense
874
  path: examples/vector_databases/typesense/README.md
875
  date: 2023-04-13
876
  authors:
877
    - jasonbosco
878
  tags:
879
    - embeddings
880

881
- title: Using Typesense for embeddings search
882
  path: >-
883
    examples/vector_databases/typesense/Using_Typesense_for_embeddings_search.ipynb
884
  date: 2023-06-28
885
  authors:
886
    - colin-openai
887
  tags:
888
    - embeddings
889

890
- title: Weaviate <> OpenAI
891
  path: examples/vector_databases/weaviate/README.md
892
  date: 2023-02-13
893
  authors:
894
    - colin-openai
895
  tags:
896
    - embeddings
897

898
- title: Using Weaviate for embeddings search
899
  path: >-
900
    examples/vector_databases/weaviate/Using_Weaviate_for_embeddings_search.ipynb
901
  date: 2023-06-28
902
  authors:
903
    - colin-openai
904
  tags:
905
    - embeddings
906

907
- title: Using Weaviate with generative OpenAI module for generative search
908
  path: >-
909
    examples/vector_databases/weaviate/generative-search-with-weaviate-and-openai.ipynb
910
  date: 2023-05-22
911
  authors:
912
    - sebawita
913
  tags:
914
    - embeddings
915
    - completions
916

917
- title: Using Weaviate with OpenAI vectorize module for embeddings search
918
  path: >-
919
    examples/vector_databases/weaviate/getting-started-with-weaviate-and-openai.ipynb
920
  date: 2023-02-13
921
  authors:
922
    - colin-openai
923
  tags:
924
    - embeddings
925

926
- title: Using Weaviate with OpenAI vectorize module for hybrid search
927
  path: >-
928
    examples/vector_databases/weaviate/hybrid-search-with-weaviate-and-openai.ipynb
929
  date: 2023-02-13
930
  authors:
931
    - colin-openai
932
  tags:
933
    - embeddings
934

935
- title: Question Answering in Weaviate with OpenAI Q&A module
936
  path: >-
937
    examples/vector_databases/weaviate/question-answering-with-weaviate-and-openai.ipynb
938
  date: 2023-02-13
939
  authors:
940
    - colin-openai
941
  tags:
942
    - embeddings
943
    - completions
944

945
- title: Filtered Search with Zilliz and OpenAI
946
  path: >-
947
    examples/vector_databases/zilliz/Filtered_search_with_Zilliz_and_OpenAI.ipynb
948
  date: 2023-03-28
949
  authors:
950
    - filip-halt
951
  tags:
952
    - embeddings
953

954
- title: Getting Started with Zilliz and OpenAI
955
  path: >-
956
    examples/vector_databases/zilliz/Getting_started_with_Zilliz_and_OpenAI.ipynb
957
  date: 2023-03-28
958
  authors:
959
    - filip-halt
960
  tags:
961
    - embeddings
962

963
- title: Techniques to improve reliability
964
  path: articles/techniques_to_improve_reliability.md
965
  redirects:
966
    - techniques_to_improve_reliability
967
  date: 2022-09-12
968
  authors:
969
    - ted-at-openai
970
  tags:
971
    - completions
972

973
- title: How to work with large language models
974
  path: articles/how_to_work_with_large_language_models.md
975
  redirects:
976
    - how_to_work_with_large_language_models
977
  date: 2023-01-20
978
  authors:
979
    - ted-at-openai
980
  tags:
981
    - completions
982

983
- title: Use cases for embeddings
984
  path: articles/text_comparison_examples.md
985
  redirects:
986
    - text_comparison_examples
987
  date: 2023-01-20
988
  authors:
989
    - ted-at-openai
990
  tags:
991
    - embeddings
992

993
- title: Related resources from around the web
994
  path: articles/related_resources.md
995
  redirects:
996
    - related_resources
997
  date: 2023-01-20
998
  authors:
999
    - ted-at-openai
1000
    - simonpfish
1001
  tags:
1002
    - completions
1003
    - embeddings
1004

1005
- title: Fine-Tuning for retrieval augmented generation (RAG) with Qdrant
1006
  path: examples/fine-tuned_qa/ft_retrieval_augmented_generation_qdrant.ipynb
1007
  date: 2023-09-04
1008
  authors:
1009
    - NirantK
1010
  tags:
1011
    - completions
1012
    - embeddings
1013

1014
- title: How to automate AWS tasks with function calling
1015
  path: examples/third_party/How_to_automate_S3_storage_with_functions.ipynb
1016
  date: 2023-09-27
1017
  authors:
1018
    - Barqawiz
1019
  tags:
1020
    - completions
1021
    - embeddings
1022
    - functions
1023

1024
- title: Neon as a vector database
1025
  path: examples/vector_databases/neon/README.md
1026
  date: 2023-09-28
1027
  authors:
1028
    - Barqawiz
1029
  tags:
1030
    - embeddings
1031

1032
- title: Vector similarity search using Neon Postgres
1033
  path: examples/vector_databases/neon/neon-postgres-vector-search-pgvector.ipynb
1034
  date: 2023-09-28
1035
  authors:
1036
    - danieltprice
1037
  tags:
1038
    - embeddings
1039

1040
- title: Question answering with LangChain, Deep Lake, & OpenAI
1041
  path: examples/vector_databases/deeplake/deeplake_langchain_qa.ipynb
1042
  date: 2023-09-30
1043
  authors:
1044
    - FayazRahman
1045
  tags:
1046
    - embeddings
1047

1048
- title: Fine-tuning OpenAI models with Weights & Biases
1049
  path: examples/third_party/GPT_finetuning_with_wandb.ipynb
1050
  date: 2023-10-04
1051
  authors:
1052
    - ash0ts
1053
  tags:
1054
    - tiktoken
1055
    - completions
1056

1057
- title: OpenAI API Monitoring with Weights & Biases Weave
1058
  path: examples/third_party/Openai_monitoring_with_wandb_weave.ipynb
1059
  date: 2023-10-04
1060
  authors:
1061
    - ash0ts
1062
  tags:
1063
    - tiktoken
1064
    - completions
1065

1066
- title: How to build an agent with the OpenAI Node.js SDK
1067
  path: examples/How_to_build_an_agent_with_the_node_sdk.mdx
1068
  date: 2023-10-05
1069
  authors:
1070
    - perborgen
1071
  tags:
1072
    - completions
1073
    - functions
1074

1075
- title: Named Entity Recognition to Enrich Text
1076
  path: examples/Named_Entity_Recognition_to_enrich_text.ipynb
1077
  date: 2023-10-20
1078
  authors:
1079
    - dcarpintero
1080
  tags:
1081
    - completions
1082
    - functions
1083

1084
- title: What makes documentation good
1085
  path: articles/what_makes_documentation_good.md
1086
  redirects:
1087
    - what_makes_documentation_good
1088
  date: 2023-09-01
1089
  authors:
1090
    - ted-at-openai
1091
  tags: []
1092

1093
- title: Function calling with an OpenAPI specification
1094
  path: examples/Function_calling_with_an_OpenAPI_spec.ipynb
1095
  date: 2023-10-15
1096
  authors:
1097
    - shyamal-anadkat
1098
    - simonpfish
1099
  tags:
1100
    - completions
1101
    - functions
1102

1103
- title: Fine tuning for function calling
1104
  path: examples/Fine_tuning_for_function_calling.ipynb
1105
  date: 2023-11-07
1106
  authors:
1107
    - jhills20
1108
    - ibigio
1109
  tags:
1110
    - completions
1111
    - functions
1112

1113
- title: Processing and narrating a video with GPT's visual capabilities and the TTS API
1114
  path: examples/GPT_with_vision_for_video_understanding.ipynb
1115
  date: 2023-11-06
1116
  authors:
1117
    - cathykc
1118
  tags:
1119
    - completions
1120
    - vision
1121
    - speech
1122

1123
- title: What's new with DALL·E 3?
1124
  path: articles/what_is_new_with_dalle_3.mdx
1125
  date: 2023-11-06
1126
  authors:
1127
    - 0hq
1128
  tags:
1129
    - dall-e
1130

1131
- title: How to make your completions outputs consistent with the new seed parameter
1132
  path: examples/Reproducible_outputs_with_the_seed_parameter.ipynb
1133
  date: 2023-11-06
1134
  authors:
1135
    - shyamal-anadkat
1136
  tags:
1137
    - completions
1138

1139
- title: Assistants API Overview (Python SDK)
1140
  path: examples/Assistants_API_overview_python.ipynb
1141
  date: 2023-11-10
1142
  authors:
1143
    - ibigio
1144
  tags:
1145
    - assistants
1146
    - functions
1147

1148
- title: MongoDB Atlas Vector Search
1149
  path: examples/vector_databases/mongodb_atlas/README.md
1150
  date: 2023-11-21
1151
  authors:
1152
    - prakul
1153
  tags:
1154
    - embeddings
1155
    - completions
1156

1157
- title: Semantic search using MongoDB Atlas Vector Search and OpenAI
1158
  path: examples/vector_databases/mongodb_atlas/semantic_search_using_mongodb_atlas_vector_search.ipynb
1159
  date: 2023-11-21
1160
  authors:
1161
    - prakul
1162
  tags:
1163
    - embeddings
1164
    - completions
1165

1166
- title: Evaluate RAG with LlamaIndex
1167
  path: examples/evaluation/Evaluate_RAG_with_LlamaIndex.ipynb
1168
  date: 2023-11-06
1169
  authors:
1170
    - Ravi Theja
1171
  tags:
1172
    - embeddings
1173
    - completions
1174

1175
- title: RAG with a Graph database
1176
  path: examples/RAG_with_graph_db.ipynb
1177
  date: 2023-12-08
1178
  authors:
1179
    - katiagg
1180
  tags:
1181
    - embeddings
1182
    - completions
1183

1184
- title: Supabase Vector Database
1185
  path: examples/vector_databases/supabase/README.md
1186
  date: 2023-12-04
1187
  authors:
1188
    - ggrn
1189
  tags:
1190
    - embeddings
1191

1192
- title: Semantic search using Supabase Vector
1193
  path: examples/vector_databases/supabase/semantic-search.mdx
1194
  date: 2023-12-04
1195
  authors:
1196
    - ggrn
1197
  tags:
1198
    - embeddings
1199

1200
- title: How to implement LLM guardrails
1201
  path: examples/How_to_use_guardrails.ipynb
1202
  date: 2023-12-19
1203
  authors:
1204
    - colin-jarvis
1205
  tags:
1206
    - guardrails
1207

1208
- title: How to combine GPT4 with Vision with RAG to create a clothing matchmaker app
1209
  path: examples/How_to_combine_GPT4v_with_RAG_Outfit_Assistant.ipynb
1210
  date: 2024-02-16
1211
  authors:
1212
    - teomusatoiu
1213
  tags:
1214
    - vision
1215
    - embeddings
1216

1217

1218
- title: How to parse PDF docs for RAG
1219
  path: examples/Parse_PDF_docs_for_RAG.ipynb
1220
  date: 2024-02-28
1221
  authors:
1222
    - katiagg
1223
  tags:
1224
    - vision
1225
    - embeddings
1226

1227

1228
- title: Using GPT4 with Vision to tag and caption images
1229
  path: examples/Tag_caption_images_with_GPT4V.ipynb
1230
  date: 2024-02-28
1231
  authors:
1232
    - katiagg
1233
  tags:
1234
    - vision
1235
    - embeddings
1236

1237

1238
- title: How to use the moderation API
1239
  path: examples/How_to_use_moderation.ipynb
1240
  date: 2024-03-05
1241
  authors:
1242
    - teomusatoiu
1243
  tags:
1244
    - moderation
1245

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.