forked from openai/openai-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registry.yaml
1235 lines (1095 loc) · 27.5 KB
/
registry.yaml
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: Using logprobs
path: examples/Using_logprobs.ipynb
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
date: 2023-12-08
authors:
- jhills20
tags:
- assistants
- dall-e
- title: Data preparation and analysis for chat model fine-tuning
path: examples/Chat_finetuning_data_prep.ipynb
date: 2023-08-22
authors:
- mwu1993
- simonpfish
tags:
- completions
- tiktoken
- title: Classification using embeddings
path: examples/Classification_using_embeddings.ipynb
date: 2022-07-11
authors:
- ted-at-openai
- logankilpatrick
tags:
- embeddings
- title: Clustering
path: examples/Clustering.ipynb
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
- logankilpatrick
tags:
- embeddings
- title: Clustering for transaction classification
path: examples/Clustering_for_transaction_classification.ipynb
date: 2022-10-20
authors:
- colin-jarvis
- ted-at-openai
tags:
- embeddings
- completions
- title: Code search using embeddings
path: examples/Code_search_using_embeddings.ipynb
date: 2022-03-10
authors:
- BorisPower
- logankilpatrick
- eli64s
tags:
- embeddings
- title: Customizing embeddings
path: examples/Customizing_embeddings.ipynb
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
date: 2023-04-14
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
date: 2023-01-18
authors:
- filipeabperes
tags:
- embeddings
- tiktoken
- title: Long document content extraction
path: examples/Entity_extraction_for_long_documents.ipynb
date: 2023-02-20
authors:
- colin-openai
tags:
- completions
- title: Fine tuning classification example
path: examples/Fine-tuned_classification.ipynb
date: 2022-03-10
authors:
- BorisPower
tags:
- completions
- title: >-
Function calling for nearby places: Leveraging the Google Places API and
customer profiles
path: examples/Function_calling_finding_nearby_places.ipynb
date: 2023-08-11
authors:
- prestontuggle
tags:
- completions
- functions
- title: Using embeddings
path: examples/Using_embeddings.ipynb
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
- logankilpatrick
- jbeutler-openai
tags:
- embeddings
- title: How to build a tool-using agent with LangChain
path: examples/How_to_build_a_tool-using_agent_with_Langchain.ipynb
date: 2023-05-02
authors:
- colin-openai
tags:
- completions
- embeddings
- title: How to use functions with a knowledge base
path: examples/How_to_call_functions_for_knowledge_retrieval.ipynb
date: 2023-06-14
authors:
- colin-openai
tags:
- completions
- functions
- title: How to call functions with chat models
path: examples/How_to_call_functions_with_chat_models.ipynb
date: 2023-06-13
authors:
- colin-openai
- joe-at-openai
tags:
- completions
- functions
- title: How to count tokens with Tiktoken
path: examples/How_to_count_tokens_with_tiktoken.ipynb
date: 2022-12-16
authors:
- ted-at-openai
tags:
- tiktoken
- completions
- title: How to fine-tune chat models
path: examples/How_to_finetune_chat_models.ipynb
date: 2023-08-22
authors:
- simonpfish
tags:
- completions
- title: How to format inputs to ChatGPT models
path: examples/How_to_format_inputs_to_ChatGPT_models.ipynb
date: 2023-03-01
authors:
- ted-at-openai
tags:
- completions
- tiktoken
- title: How to handle rate limits
path: examples/How_to_handle_rate_limits.ipynb
date: 2022-09-10
authors:
- ted-at-openai
tags:
- completions
- embeddings
- title: How to stream completions
path: examples/How_to_stream_completions.ipynb
date: 2022-09-02
authors:
- ted-at-openai
tags:
- completions
- tiktoken
- title: Multiclass Classification for Transactions
path: examples/Multiclass_classification_for_transactions.ipynb
date: 2022-10-20
authors:
- colin-jarvis
tags:
- embeddings
- completions
- title: Get embeddings from dataset
path: examples/Get_embeddings_from_dataset.ipynb
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
tags:
- embeddings
- title: Question answering using a search API and re-ranking
path: examples/Question_answering_using_a_search_API.ipynb
date: 2023-06-16
authors:
- simonpfish
- ted-at-openai
tags:
- embeddings
- completions
- title: Question answering using embeddings-based search
path: examples/Question_answering_using_embeddings.ipynb
date: 2022-06-10
authors:
- ted-at-openai
- MikeHeaton
tags:
- embeddings
- completions
- title: Recommendation using embeddings and nearest neighbor search
path: examples/Recommendation_using_embeddings.ipynb
date: 2022-03-10
authors:
- ted-at-openai
- BorisPower
- logankilpatrick
tags:
- embeddings
- title: Regression using the embeddings
path: examples/Regression_using_embeddings.ipynb
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
- logankilpatrick
tags:
- embeddings
- title: Search reranking with cross-encoders
path: examples/Search_reranking_with_cross-encoders.ipynb
date: 2023-06-28
authors:
- colin-openai
tags:
- embeddings
- completions
- title: Semantic text search using embeddings
path: examples/Semantic_text_search_using_embeddings.ipynb
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
- logankilpatrick
tags:
- embeddings
- title: Unit test writing using a multi-step prompt
path: examples/Unit_test_writing_using_a_multi-step_prompt.ipynb
date: 2022-11-15
authors:
- ted-at-openai
tags:
- completions
- title: Unit test writing using a multi-step prompt with legacy Completions
path: >-
examples/Unit_test_writing_using_a_multi-step_prompt_with_older_completions_API.ipynb
date: 2023-05-19
authors:
- ted-at-openai
tags:
- completions
- title: User and product embeddings
path: examples/User_and_product_embeddings.ipynb
date: 2022-03-10
authors:
- BorisPower
tags:
- embeddings
- title: Visualizing the embeddings in 2D
path: examples/Visualizing_embeddings_in_2D.ipynb
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
tags:
- embeddings
- title: Visualizing embeddings in 3D
path: examples/Visualizing_embeddings_in_3D.ipynb
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
tags:
- embeddings
- title: Visualizing embeddings in Weights and Biases
path: examples/third_party/Visualizing_embeddings_in_wandb.ipynb
date: 2023-02-01
authors:
- scottire
tags:
- embeddings
- title: Visualizing embeddings in Atlas
path: examples/third_party/Visualizing_embeddings_with_Atlas.ipynb
date: 2023-03-28
authors:
- AndriyMulyar
- TDulka
tags:
- embeddings
- title: "Addressing transcription misspellings: prompt vs post-processing"
path: examples/Whisper_correct_misspelling.ipynb
date: 2023-08-11
authors:
- prestontuggle
tags:
- whisper
- completions
- title: "Enhancing Whisper transcriptions: pre- & post-processing techniques"
path: examples/Whisper_processing_guide.ipynb
date: 2023-08-11
authors:
- prestontuggle
tags:
- whisper
- title: Whisper prompting guide
path: examples/Whisper_prompting_guide.ipynb
date: 2023-06-27
authors:
- prestontuggle
tags:
- whisper
- completions
- title: Zero-shot classification with embeddings
path: examples/Zero-shot_classification_with_embeddings.ipynb
date: 2022-03-10
authors:
- BorisPower
- ted-at-openai
- logankilpatrick
tags:
- embeddings
- title: Azure DALL·E image generation example
path: examples/azure/DALL-E.ipynb
date: 2023-06-12
authors:
- glecaros
tags:
- dall-e
- title: Azure Chat Completions example (preview)
path: examples/azure/chat.ipynb
date: 2023-03-28
authors:
- cmurtz-msft
- glecaros
- kristapratico
tags:
- completions
- title: Azure Chat Completion models with your own data (preview)
path: examples/azure/chat_with_your_own_data.ipynb
date: 2023-09-11
authors:
- kristapratico
tags:
- completions
- title: Azure completions example
path: examples/azure/completions.ipynb
date: 2022-12-16
authors:
- cmurtz-msft
- glecaros
- kristapratico
tags:
- embeddings
- completions
- title: Azure embeddings example
path: examples/azure/embeddings.ipynb
date: 2022-07-12
authors:
- ted-at-openai
- cmurtz-msft
- glecaros
- kristapratico
tags:
- embeddings
- title: Azure functions example
path: examples/azure/functions.ipynb
date: 2023-07-21
authors:
- kristapratico
tags:
- completions
- functions
- title: Translate a book writen in LaTeX from Slovenian into English
path: examples/book_translation/translate_latex_book.ipynb
date: 2022-03-10
authors:
- BorisPower
tags:
- completions
- tiktoken
- title: How to create dynamic masks with DALL·E and Segment Anything
path: >-
examples/dalle/How_to_create_dynamic_masks_with_DALL-E_and_Segment_Anything.ipynb
date: 2023-05-19
authors:
- colin-openai
tags:
- dall-e
- title: How to use the DALL·E API
path: examples/dalle/Image_generations_edits_and_variations_with_DALL-E.ipynb
date: 2022-11-04
authors:
- ted-at-openai
tags:
- dall-e
- title: How to evaluate a summarization task
path: examples/evaluation/How_to_eval_abstractive_summarization.ipynb
date: 2023-08-16
authors:
- shyamal-anadkat
- simonpfish
tags:
- embeddings
- completions
- title: Fine-Tuned Q&A - collect data
path: examples/fine-tuned_qa/olympics-1-collect-data.ipynb
date: 2022-03-10
authors:
- ted-at-openai
- BorisPower
tags:
- embeddings
- completions
- title: Fine-Tuned Q&A - create Q&A
path: examples/fine-tuned_qa/olympics-2-create-qa.ipynb
date: 2022-03-10
authors:
- ted-at-openai
- BorisPower
tags:
- embeddings
- completions
- title: Fine-Tuned Q&A - train
path: examples/fine-tuned_qa/olympics-3-train-qa.ipynb
date: 2022-03-10
authors:
- ted-at-openai
- BorisPower
tags:
- completions
- embeddings
- title: Visualizing the embeddings in Kangas
path: examples/third_party/Visualizing_embeddings_in_Kangas.ipynb
date: 2023-07-11
authors:
- dsblank
tags:
- embeddings
- title: Financial document analysis with LlamaIndex
path: >-
examples/third_party/financial_document_analysis_with_llamaindex.ipynb
date: 2023-06-22
authors:
- Disiok
tags:
- embeddings
- completions
- title: Vector databases
path: examples/vector_databases/README.md
date: 2023-06-28
authors:
- colin-openai
- moizsajid
tags:
- embeddings
- title: Using PolarDB-PG as a vector database for OpenAI embeddings
path: >-
examples/vector_databases/PolarDB/Getting_started_with_PolarDB_and_OpenAI.ipynb
date: 2023-07-11
authors:
- liuchengshan-lcs
tags:
- embeddings
- title: Semantic search with SingleStoreDB
path: >-
examples/vector_databases/SingleStoreDB/OpenAI_wikipedia_semantic_search.ipynb
date: 2023-05-22
authors:
- arno756
tags:
- completions
- embeddings
- title: SingleStoreDB
path: examples/vector_databases/SingleStoreDB/README.md
date: 2023-05-22
authors:
- arno756
tags:
- embeddings
- completions
- title: Using AnalyticDB as a vector database for OpenAI embeddings
path: >-
examples/vector_databases/analyticdb/Getting_started_with_AnalyticDB_and_OpenAI.ipynb
date: 2023-04-06
authors:
- wangxuqi
tags:
- embeddings
- title: Question answering with Langchain, AnalyticDB and OpenAI
path: >-
examples/vector_databases/analyticdb/QA_with_Langchain_AnalyticDB_and_OpenAI.ipynb
date: 2023-05-05
authors:
- wangxuqi
tags:
- embeddings
- tiktoken
- title: Azure AI Search as a vector database for OpenAI embeddings
path: >-
examples/vector_databases/azuresearch/Getting_started_with_azure_ai_search_and_openai.ipynb
date: 2023-09-11
authors:
- farzad528
tags:
- embeddings
- title: Philosophy with vector embeddings, OpenAI and Cassandra / Astra DB
path: examples/vector_databases/cassandra_astradb/Philosophical_Quotes_CQL.ipynb
date: 2023-08-29
authors:
- hemidactylus
tags:
- embeddings
- completions
- title: Philosophy with vector embeddings, OpenAI and Cassandra / Astra DB
path: >-
examples/vector_databases/cassandra_astradb/Philosophical_Quotes_cassIO.ipynb
date: 2023-08-29
authors:
- hemidactylus
tags:
- embeddings
- completions
- title: Cassandra / Astra DB
path: examples/vector_databases/cassandra_astradb/README.md
date: 2023-08-29
authors:
- hemidactylus
tags:
- embeddings
- title: Using Chroma for embeddings search
path: examples/vector_databases/chroma/Using_Chroma_for_embeddings_search.ipynb
date: 2023-06-28
authors:
- colin-openai
- atroyn
tags:
- embeddings
- title: Robust question answering with Chroma and OpenAI
path: examples/vector_databases/chroma/hyde-with-chroma-and-openai.ipynb
date: 2023-04-06
authors:
- atroyn
tags:
- embeddings
- completions
- title: Elasticsearch
path: examples/vector_databases/elasticsearch/README.md
date: 2023-08-29
authors:
- leemthompo
tags:
- embeddings
- completions
- title: Retrieval augmented generation using Elasticsearch and OpenAI
path: >-
examples/vector_databases/elasticsearch/elasticsearch-retrieval-augmented-generation.ipynb
date: 2023-08-29
authors:
- leemthompo
tags:
- embeddings
- completions
- title: Semantic search using Elasticsearch and OpenAI
path: examples/vector_databases/elasticsearch/elasticsearch-semantic-search.ipynb
date: 2023-08-29
authors:
- leemthompo
tags:
- embeddings
- completions
- title: Using Hologres as a vector database for OpenAI embeddings
path: >-
examples/vector_databases/hologres/Getting_started_with_Hologres_and_OpenAI.ipynb
date: 2023-05-19
authors:
- zcgeng
tags:
- embeddings
- title: Kusto as a vector database for embeddings
path: >-
examples/vector_databases/kusto/Getting_started_with_kusto_and_openai_embeddings.ipynb
date: 2023-05-10
authors:
- Anshul Sharma
tags:
- embeddings
- title: Kusto as a vector database
path: examples/vector_databases/kusto/README.md
date: 2023-05-10
authors:
- Anshul Sharma
tags:
- embeddings
- title: Filtered search with Milvus and OpenAI
path: >-
examples/vector_databases/milvus/Filtered_search_with_Milvus_and_OpenAI.ipynb
date: 2023-03-28
authors:
- filip-halt
tags:
- embeddings
- title: Getting started with Milvus and OpenAI
path: >-
examples/vector_databases/milvus/Getting_started_with_Milvus_and_OpenAI.ipynb
date: 2023-03-28
authors:
- filip-halt
tags:
- embeddings
- title: Using MyScale as a vector database for OpenAI embeddings
path: >-
examples/vector_databases/myscale/Getting_started_with_MyScale_and_OpenAI.ipynb
date: 2023-05-01
authors:
- melovy
tags:
- embeddings
- title: Using MyScale for embeddings search
path: examples/vector_databases/myscale/Using_MyScale_for_embeddings_search.ipynb
date: 2023-06-28
authors:
- colin-openai
tags:
- embeddings
- title: Retrieval augmentation for GPT-4 using Pinecone
path: examples/vector_databases/pinecone/GPT4_Retrieval_Augmentation.ipynb
date: 2023-03-24
authors:
- jamescalam
tags:
- embeddings
- completions
- tiktoken
- title: Retrieval augmented generative question answering with Pinecone
path: examples/vector_databases/pinecone/Gen_QA.ipynb
date: 2023-02-07
authors:
- jamescalam
tags:
- embeddings
- completions
- title: Pinecone vector database
path: examples/vector_databases/pinecone/README.md
date: 2023-03-24
authors:
- jamescalam
tags:
- embeddings
- completions
- title: Semantic search with Pinecone and OpenAI
path: examples/vector_databases/pinecone/Semantic_Search.ipynb
date: 2023-03-24
authors:
- jamescalam
tags:
- embeddings
- title: Using Pinecone for embeddings search
path: >-
examples/vector_databases/pinecone/Using_Pinecone_for_embeddings_search.ipynb
date: 2023-06-28
authors:
- colin-openai
tags:
- embeddings
- title: Using Qdrant as a vector database for OpenAI embeddings
path: >-
examples/vector_databases/qdrant/Getting_started_with_Qdrant_and_OpenAI.ipynb
date: 2023-02-16
authors:
- kacperlukawski
tags:
- embeddings
- title: Question answering with Langchain, Qdrant and OpenAI
path: examples/vector_databases/qdrant/QA_with_Langchain_Qdrant_and_OpenAI.ipynb
date: 2023-02-16
authors:
- kacperlukawski
tags:
- embeddings
- title: Using Qdrant for embeddings search
path: examples/vector_databases/qdrant/Using_Qdrant_for_embeddings_search.ipynb
date: 2023-06-28
authors:
- colin-openai
- kacperlukawski
tags:
- embeddings
- title: Redis
path: examples/vector_databases/redis/README.md
date: 2023-02-13
authors:
- Spartee
tags:
- embeddings
- completions
- title: Using Redis for embeddings search
path: examples/vector_databases/redis/Using_Redis_for_embeddings_search.ipynb
date: 2023-06-28
authors:
- colin-openai
tags:
- embeddings
- title: Using Redis as a vector database with OpenAI
path: examples/vector_databases/redis/getting-started-with-redis-and-openai.ipynb
date: 2023-02-13
authors:
- Spartee
tags:
- embeddings
- title: Running hybrid VSS queries with Redis and OpenAI
path: examples/vector_databases/redis/redis-hybrid-query-examples.ipynb
date: 2023-05-11
authors:
- Michael Yuan
tags:
- embeddings
- title: Redis vectors as JSON with OpenAI
path: examples/vector_databases/redis/redisjson/redisjson.ipynb
date: 2023-05-10
authors:
- Michael Yuan
tags:
- embeddings
- title: Redis as a context store with Chat Completions
path: examples/vector_databases/redis/redisqna/redisqna.ipynb
date: 2023-05-11
authors:
- Michael Yuan
tags:
- completions
- embeddings
- title: Using Tair as a vector database for OpenAI embeddings
path: examples/vector_databases/tair/Getting_started_with_Tair_and_OpenAI.ipynb
date: 2023-09-11
authors:
- dongqqcom
tags:
- embeddings
- title: Question answering with Langchain, Tair and OpenAI
path: examples/vector_databases/tair/QA_with_Langchain_Tair_and_OpenAI.ipynb
date: 2023-09-11
authors:
- dongqqcom
tags:
- embeddings
- tiktoken
- completions
- title: Typesense
path: examples/vector_databases/typesense/README.md
date: 2023-04-13
authors:
- jasonbosco
tags:
- embeddings
- title: Using Typesense for embeddings search
path: >-
examples/vector_databases/typesense/Using_Typesense_for_embeddings_search.ipynb
date: 2023-06-28
authors:
- colin-openai
tags:
- embeddings
- title: Weaviate <> OpenAI
path: examples/vector_databases/weaviate/README.md
date: 2023-02-13
authors:
- colin-openai
tags:
- embeddings
- title: Using Weaviate for embeddings search
path: >-
examples/vector_databases/weaviate/Using_Weaviate_for_embeddings_search.ipynb
date: 2023-06-28
authors:
- colin-openai
tags:
- embeddings
- title: Using Weaviate with generative OpenAI module for generative search
path: >-
examples/vector_databases/weaviate/generative-search-with-weaviate-and-openai.ipynb
date: 2023-05-22
authors:
- sebawita
tags:
- embeddings
- completions
- title: Using Weaviate with OpenAI vectorize module for embeddings search
path: >-
examples/vector_databases/weaviate/getting-started-with-weaviate-and-openai.ipynb
date: 2023-02-13
authors:
- colin-openai
tags:
- embeddings
- title: Using Weaviate with OpenAI vectorize module for hybrid search
path: >-
examples/vector_databases/weaviate/hybrid-search-with-weaviate-and-openai.ipynb
date: 2023-02-13
authors:
- colin-openai
tags:
- embeddings
- title: Question Answering in Weaviate with OpenAI Q&A module
path: >-
examples/vector_databases/weaviate/question-answering-with-weaviate-and-openai.ipynb
date: 2023-02-13
authors:
- colin-openai
tags:
- embeddings
- completions
- title: Filtered Search with Zilliz and OpenAI
path: >-
examples/vector_databases/zilliz/Filtered_search_with_Zilliz_and_OpenAI.ipynb
date: 2023-03-28
authors:
- filip-halt
tags:
- embeddings
- title: Getting Started with Zilliz and OpenAI
path: >-
examples/vector_databases/zilliz/Getting_started_with_Zilliz_and_OpenAI.ipynb
date: 2023-03-28
authors:
- filip-halt
tags:
- embeddings
- title: Techniques to improve reliability
path: articles/techniques_to_improve_reliability.md
redirects:
- techniques_to_improve_reliability
date: 2022-09-12
authors:
- ted-at-openai
tags:
- completions
- title: How to work with large language models
path: articles/how_to_work_with_large_language_models.md
redirects:
- how_to_work_with_large_language_models
date: 2023-01-20
authors:
- ted-at-openai
tags:
- completions
- title: Use cases for embeddings
path: articles/text_comparison_examples.md
redirects:
- text_comparison_examples
date: 2023-01-20
authors:
- ted-at-openai
tags:
- embeddings
- title: Related resources from around the web
path: articles/related_resources.md
redirects:
- related_resources
date: 2023-01-20
authors:
- ted-at-openai
- simonpfish
tags:
- completions
- embeddings
- title: Fine-Tuning for retrieval augmented generation (RAG) with Qdrant
path: examples/fine-tuned_qa/ft_retrieval_augmented_generation_qdrant.ipynb
date: 2023-09-04
authors:
- NirantK