Skip to content

Commit 581a4a2

Browse files
committed
Add ® in generated files
Future versions will get that automatically, from commit 570aaa1.
1 parent 50b9b0f commit 581a4a2

14 files changed

+14
-14
lines changed

examples/AnalyzeScientificPapersUsingFunctionCalls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Analyze Scientific Papers Using ChatGPT™ Function Calls
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/AnalyzeScientificPapersUsingFunctionCalls.mlx](mlx-scripts/AnalyzeScientificPapersUsingFunctionCalls.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/AnalyzeScientificPapersUsingFunctionCalls.mlx](mlx-scripts/AnalyzeScientificPapersUsingFunctionCalls.mlx)
55

66
This example shows how to extract recent scientific papers from ArXiv, summarize them using ChatGPT, and write the results to a CSV file using the `openAIFunction` function.
77

examples/AnalyzeSentimentinTextUsingChatGPTinJSONMode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Analyze Sentiment in Text Using ChatGPT™ in JSON Mode
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/AnalyzeSentimentinTextUsingChatGPTinJSONMode.mlx](mlx-scripts/AnalyzeSentimentinTextUsingChatGPTinJSONMode.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/AnalyzeSentimentinTextUsingChatGPTinJSONMode.mlx](mlx-scripts/AnalyzeSentimentinTextUsingChatGPTinJSONMode.mlx)
55

66
This example shows how to use ChatGPT for sentiment analysis and output the results in JSON format.
77

examples/AnalyzeTextDataUsingParallelFunctionCallwithChatGPT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Analyze Text Data Using Parallel Function Calls with ChatGPT™
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/AnalyzeTextDataUsingParallelFunctionCallwithChatGPT.mlx](mlx-scripts/AnalyzeTextDataUsingParallelFunctionCallwithChatGPT.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/AnalyzeTextDataUsingParallelFunctionCallwithChatGPT.mlx](mlx-scripts/AnalyzeTextDataUsingParallelFunctionCallwithChatGPT.mlx)
55

66
This example shows how to detect multiple function calls in a single user prompt and use this to extract information from text data.
77

examples/CreateSimpleChatBot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Create Simple ChatBot
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/CreateSimpleChatBot.mlx](mlx-scripts/CreateSimpleChatBot.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/CreateSimpleChatBot.mlx](mlx-scripts/CreateSimpleChatBot.mlx)
55

66
This example shows how to create a simple chatbot using the `openAIChat` and `messageHistory` functions.
77

examples/CreateSimpleOllamaChatBot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Create Simple ChatBot
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/CreateSimpleOllamaChatBot.mlx](mlx-scripts/CreateSimpleOllamaChatBot.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/CreateSimpleOllamaChatBot.mlx](mlx-scripts/CreateSimpleOllamaChatBot.mlx)
55

66
This example shows how to create a simple chatbot using the `ollamaChat` and `messageHistory` functions.
77

examples/DescribeImagesUsingChatGPT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Describe Images Using ChatGPT™
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/DescribeImagesUsingChatGPT.mlx](mlx-scripts/DescribeImagesUsingChatGPT.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/DescribeImagesUsingChatGPT.mlx](mlx-scripts/DescribeImagesUsingChatGPT.mlx)
55

66
This example shows how to generate image descriptions using the addUserMessageWithImages function. To run this example, you need a valid API key from a paid OpenAI™ API account, and a history of successful payment.
77

examples/InformationRetrievalUsingOpenAIDocumentEmbedding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Information Retrieval Using OpenAI™ Document Embedding
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/InformationRetrievalUsingOpenAIDocumentEmbedding.mlx](mlx-scripts/InformationRetrievalUsingOpenAIDocumentEmbedding.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/InformationRetrievalUsingOpenAIDocumentEmbedding.mlx](mlx-scripts/InformationRetrievalUsingOpenAIDocumentEmbedding.mlx)
55

66
This example shows how to find documents to answer queries using the 'text\-embedding\-3\-small' document embedding model. Embeddings are used to represent documents and queries in a high\-dimensional space, allowing for the efficient retrieval of relevant information based on semantic similarity.
77

examples/ProcessGeneratedTextInRealTimeByUsingOllamaInStreamingMode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Process Generated Text in Real Time by Using Ollama™ in Streaming Mode
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/ProcessGeneratedTextInRealTimeByUsingOllamaInStreamingMode.mlx](mlx-scripts/ProcessGeneratedTextInRealTimeByUsingOllamaInStreamingMode.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/ProcessGeneratedTextInRealTimeByUsingOllamaInStreamingMode.mlx](mlx-scripts/ProcessGeneratedTextInRealTimeByUsingOllamaInStreamingMode.mlx)
55

66
This example shows how to process generated text in real time by using Ollama in streaming mode.
77

examples/ProcessGeneratedTextinRealTimebyUsingChatGPTinStreamingMode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Process Generated Text in Real Time by Using ChatGPT™ in Streaming Mode
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/ProcessGeneratedTextinRealTimebyUsingChatGPTinStreamingMode.mlx](mlx-scripts/ProcessGeneratedTextinRealTimebyUsingChatGPTinStreamingMode.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/ProcessGeneratedTextinRealTimebyUsingChatGPTinStreamingMode.mlx](mlx-scripts/ProcessGeneratedTextinRealTimebyUsingChatGPTinStreamingMode.mlx)
55

66
This example shows how to process generated text in real time by using ChatGPT in streaming mode.
77

examples/RetrievalAugmentedGenerationUsingChatGPTandMATLAB.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Retrieval\-Augmented Generation Using ChatGPT™ and MATLAB
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/RetrievalAugmentedGenerationUsingChatGPTandMATLAB.mlx](mlx-scripts/RetrievalAugmentedGenerationUsingChatGPTandMATLAB.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/RetrievalAugmentedGenerationUsingChatGPTandMATLAB.mlx](mlx-scripts/RetrievalAugmentedGenerationUsingChatGPTandMATLAB.mlx)
55

66
This example shows how to use retrieval\-augmented generation to generate answers to queries based on information contained in a document corpus.
77

examples/RetrievalAugmentedGenerationUsingOllamaAndMATLAB.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Retrieval\-Augmented Generation Using Ollama™ and MATLAB
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/RetrievalAugmentedGenerationUsingOllamaAndMATLAB.mlx](mlx-scripts/RetrievalAugmentedGenerationUsingOllamaAndMATLAB.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/RetrievalAugmentedGenerationUsingOllamaAndMATLAB.mlx](mlx-scripts/RetrievalAugmentedGenerationUsingOllamaAndMATLAB.mlx)
55

66
This example shows how to use retrieval\-augmented generation to generate answers to queries based on information contained in a document corpus.
77

examples/SummarizeLargeDocumentsUsingChatGPTandMATLAB.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Summarize Large Documents Using ChatGPT™ and MATLAB®
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/SummarizeLargeDocumentsUsingChatGPTandMATLAB.mlx](mlx-scripts/SummarizeLargeDocumentsUsingChatGPTandMATLAB.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/SummarizeLargeDocumentsUsingChatGPTandMATLAB.mlx](mlx-scripts/SummarizeLargeDocumentsUsingChatGPTandMATLAB.mlx)
55

66
This example shows how to use ChatGPT to summarize documents that are too large to be summarized at once.
77

examples/UsingDALLEToEditImages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Using DALL·E™ to Edit Images
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/UsingDALLEToEditImages.mlx](mlx-scripts/UsingDALLEToEditImages.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/UsingDALLEToEditImages.mlx](mlx-scripts/UsingDALLEToEditImages.mlx)
55

66
This example shows how to generate and edit images using the `openAIImages` object.
77

examples/UsingDALLEToGenerateImages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Using DALL·E™ to generate images
33

4-
To run the code shown on this page, open the MLX file in MATLAB: [mlx-scripts/UsingDALLEToGenerateImages.mlx](mlx-scripts/UsingDALLEToGenerateImages.mlx)
4+
To run the code shown on this page, open the MLX file in MATLAB®: [mlx-scripts/UsingDALLEToGenerateImages.mlx](mlx-scripts/UsingDALLEToGenerateImages.mlx)
55

66
This example shows how to generate images using the `openAIImages` object.
77

0 commit comments

Comments
 (0)