Text Manipulation using OpenAI
Last Updated :
08 Jun, 2023
Open AI is a leading organization in the field of Artificial Intelligence and Machine Learning, they have provided the developers with state-of-the-art innovations like ChatGPT, WhisperAI, DALL-E, and many more to work on the vast unstructured data available. For text manipulation, OpenAI has compiled a Completions model which helps you to generate new text data, fill masks in strings, carry conversations, translate, and summarize. The completion module uses the power of GPT-3 to perform these tasks and give out fascinating results. In today’s article, we will be going through this Completions module and see how one can use this in Python.
Steps to perform text manipulation using OpenAI
Now let’s explore how one can use GPT-3 to manipulate text data
Step 1: Install the Openai library in your python environment
!pip install openai
Step 2: Import the openai library and assign the API key to openai environment
Python3
import openai
openai.api_key = "API_KEY"
|
If you do not have an API key, then log in to your OpenAI account after creating one. After logging in, select Personal from the top-right menu, and then select “View API keys”. A page containing API keys is displayed, and the button “Create new secret key” is visible. A secret key is generated when you click on that, copy it and save it somewhere else because it will be needed in further steps.
Step 3: Define a function to perform text manipulation using OpenAI API in python
Python3
def comp(PROMPT, MaxToken = 50 , outputs = 3 ):
response = openai.Completion.create(
model = "text-davinci-003" ,
prompt = PROMPT,
max_tokens = MaxToken,
n = outputs
)
output = list ()
for k in response[ 'choices' ]:
output.append(k[ 'text' ].strip())
return output
|
Here, we have used the Completions module from OpenAI library and generate text for the given user prompt. Here are the important parameters involved with Completions module:
- model [required]: ID of the model to use can find out using the below command openai.Model.list().data where the value of ‘id’ represent the model name. we need to select a suitable model as per our use.
- prompt: The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays. Note that <|endoftext|> is the document separator that the model sees during training, so if a prompt is not specified the model will generate as if from the beginning of a new document.
- max_tokens: The maximum number of tokens to generate in the completion. The default value is 16.
- temperature: Sampling temperature ranges between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.
- n: number of completions to generate for each prompt.
Example prompts for text manipulation
Now let’s try out some prompts with the completions module and see their results.
Prompt 1: Text Generation
Output:
['Negative']
Prompt 2: Text Completion
Output:
['What seems to be the problem?',
'Good morning! How can I help you today?',
'What seems to be the trouble?',
'Good to see you! How can I help you today?',
'What seems to be the problem?']
Prompt 3: Text Generation
Python3
p = "Write a tagline for my shoe company"
Output = comp(p,outputs = 3 )
print (Output[ 0 ])
print (Output[ 1 ])
print (Output[ 2 ])
|
Output:
"Walk in Comfort, Walk with Us!"
"Walking in Style, Step by Step"
"Walk in style with our designer shoes!"
Prompt 4: Text Completion
Python3
p =
print (comp(p, outputs = 1 )[ 0 ])
|
Output:
1. Positive
2. Negative
3. Positive
4. Neutral
5. Negative
Prompt 5: Text Completion
Python3
p =
Output = comp(p,MaxToken = 35 , outputs = 3 )
print (Output[ 0 ])
print ( '\n' ,Output[ 1 ])
print ( '\n' ,Output[ 2 ])
|
Output:
I'm looking for a good place to eat.
AI: Sounds like you've got a bit of a craving for something delicious. I know the perfect place! Let me
I'm looking for some good places to eat. Do you know any?
AI: Sure! Are you looking for something specific, like Italian, or do you just want
Could you recommend some good places to eat in this area?
AI: Of course! There are lots of great restaurants in the area. I recommend checking out the Seafood
Prompt 6: Translation
Python3
p =
Output = comp(p,MaxToken = 500 ,outputs = 2 )
print (Output[ 0 ])
print ( '\n' ,Output[ 1 ])
|
Output:
Hindi: मैं GeeksforGeeks से सीख रहा हूँ।
German: Ich lerne von GeeksforGeeks.
Japanese: 私はGeeksforGeeksから学んでいます。
Hindi: मैं GeeksforGeeks से सीख रहा हूँ।
German: Ich lerne von GeeksforGeeks.
Japanese: 私はGeeksforGeeksから学んでいます。
Prompt 7: Summarization
Python3
p =
Output = comp(p,MaxToken = 20 ,outputs = 3 )
print (Output[ 0 ])
print (Output[ 1 ])
print (Output[ 2 ])
|
Output:
Mount Everest is the highest mountain in the world. It's very dangerous- you have to be
Mount Everest is a very tall mountain located in the Himalayas. People from all around the
Mt. Everest is the highest peak in the world and it is very dangerous and hard to
Prompt 8: Translation
Python3
p =
Output = comp(p,MaxToken = 1200 ,outputs = 1 )
print (Output[ 0 ])
|
Output:
माउंट एवरेस्ट, हिमालयों में स्थित, विश्व में सर्वोच्च चोटी है और पर्यावरण में श्रमिकों के लिए एक लोकप्रिय गंतव्य है।
29,029 फीट (8,848 मीटर) की सुंदर ऊँचाई के साथ, यह अत्यधिक ऊँचाई और अनपेक्षित मौसम के कारण पर्यावरण में श्रमिकों को एक महत्वपूर्ण चुनौती देता है।
यह पर्वत नेपाल और चीन के सीमा पर स्थित है और यह पृथ्वी के हर कोणस्थल से ऊर्जा और अहंकार से प्रतीक्षा करने वाले अभ्यासीयकों को आकर्षित करता है।
माउंट एवरेस्ट का एक अत्यंत अधिक प्रयासों और आगमनों का अत्यधिक इतिहास है और यह दो घंटों से अन्वेषकों और आगमनाकारों के लिए आकर्षण रहा है।
माउंट एवरेस्ट के आकर्षण के बावजूद, उसे छोड़ने के लिए सख्त योजना की आवश्यकता, शारीरिक स्वस्थता और पर्वतारोहण के विद्या की आवश्यकता होती है।
Prompt 9: Text Conversion
Python3
PROMPT =
print (comp(PROMPT, MaxToken = 300 , outputs = 1 )[ 0 ])
|
Output:
1. ????
2. ????
3. ????
Prompt 10: Text Conversion
Python3
PROMPT =
print (comp(PROMPT, MaxToken = 300 , outputs = 1 )[ 0 ])
|
Output:
§1. ㅎㅣ
2. ㄱㅣㅇㄱㅅ
3. ㄹㅗ
Prompt 11: Retrieve factual information
Python3
PROMPT =
print (comp(PROMPT, MaxToken = 300 , outputs = 1 )[ 0 ])
|
Output:
There are 28 states and 8 union territories in India.
Prompt 12: Retrieve factual information
Python3
PROMPT =
print (comp(PROMPT, MaxToken = 300 , outputs = 1 )[ 0 ])
|
Output:
There are currently 195 countries in the world, according to the United Nations. This number includes 193 member states that are UN members, as well as 2 non-member observer states.
1. What is completion in OpenAI?
The most fundamental OpenAI model is the Completions API, which has a simple interface yet is highly versatile and powerful. It answers with a text completion that you’ve instructed it to prepare when you prompt it.
2. What is the difference between chat completion and completion in OpenAI?
The /chat/completions endpoint completes a specific dialogue and demands input in a specific way that matches the message history, in contrast to the /completions endpoint, which completes a single prompt and accepts a single string.
To use chatGPT models, you must use the /chat/completions API, but your request must be modified accordingly.
3. What is text completion AI?
Complete the sentence, a specialised model or system created to automatically create text or complete phrases from a partial input or prompt is referred to as having artificial intelligence (AI). In order to identify the statistical patterns, linguistic structures, and semantic linkages present in the training data, these models are trained on large volumes of text data. The text completion AI makes use of this newly discovered knowledge to create a logical and contextually appropriate continuation of the text when given an unfinished sentence or prompt.
4. How does OpenAI generate text?
The GPT-3 language model is used in the Open AI text generator to create intelligent text. This tool enables you to create a wide range of texts. The Open AI text generator is among the newest and most well-liked forms of text generators, however there are many different varieties.
5. Can Completions API write an essay?
You may ask it to write anything for you, in any style, including business taglines, essays, research papers, software code, song lyrics about your dog, and poems using the name of your child.
6. Can Completions API generate images?
No, the completions API can only generate text. It does not have image generating capabilities. If you want to generate images using text prompts you can check out DALL-E by OpenAI.
Conclusion
The Completions module, which uses the power of GPT-3 to generate new text, fill in masked strings, facilitate discussions, translate languages, and summarise content, is one of the primary features provided by OpenAI, as we saw in this article. Python programmers may make use of the OpenAI library and unlock the power of the Completions module by following a few straightforward steps.
The article’s prompts show off the versatility of the Completions module by providing illustrations of how to create text responses for various scenarios and contexts. The factors temperature, maximum tokens, prompt structure, and model choice all help to give the outputs that are produced flexibility and control.
Although the findings from OpenAI’s text completion AI models can be rather interesting, it is vital to use caution and evaluate the generated text for correctness, coherence, and appropriateness. Text completion AI models that rely on statistical patterns rather than actual comprehension may occasionally produce incorrect or absurd results. Developers may take advantage of text completion AI’s potential while assuring the accuracy and dependability of the generated text by understanding its capabilities and constraints.
Similar Reads
OpenAI Python API - Complete Guide
OpenAI is the leading company in the field of AI. With the public release of software like ChatGPT, DALL-E, GPT-3, and Whisper, the company has taken the entire AI industry by storm. Everyone has incorporated ChatGPT to do their work more efficiently and those who failed to do so have lost their job
15+ min read
Extract keywords from text with ChatGPT
In this article, we will learn how to extract keywords from text with ChatGPT using Python. ChatGPT is developed by OpenAI. It is an extensive language model based on the GPT-3.5 architecture. It is a type of AI chatbot that can take input from users and generate solutions similar to humans. ChatGPT
4 min read
Pandas AI: The Generative AI Python Library
In the age of AI, many of our tasks have been automated especially after the launch of ChatGPT. One such tool that uses the power of ChatGPT to ease data manipulation task in Python is PandasAI. It leverages the power of ChatGPT to generate Python code and executes it. The output of the generated co
9 min read
Text Manipulation using OpenAI
Open AI is a leading organization in the field of Artificial Intelligence and Machine Learning, they have provided the developers with state-of-the-art innovations like ChatGPT, WhisperAI, DALL-E, and many more to work on the vast unstructured data available. For text manipulation, OpenAI has compil
11 min read
OpenAI Whisper
In today's time, data is available in many forms, like tables, images, text, audio, or video. We use this data to gain insights and make predictions for certain events using various machine learning and deep learning techniques. There are many techniques that help us work on tables, images, texts, a
9 min read
Spam Classification using OpenAI
The majority of people in today's society own a mobile phone, and they all frequently get communications (SMS/email) on their phones. But the key point is that some of the messages you get may be spam, with very few being genuine or important interactions. You may be tricked into providing your pers
6 min read
How to Use chatgpt on Linux
OpenAI has developed an AI-powered chatbot named `ChatGPT`, which is used by users to have their answers to questions and queries. One can access ChatGPT on searchingness easily. But some users want to access this chatbot on their Linux System. It can be accessed as a Desktop application on Ubuntu o
6 min read
PandasAI Library from OpenAI
We spend a lot of time editing, cleaning, and analyzing data using various methodologies in today's data-driven environment. Pandas is a well-known Python module that aids with data manipulation. It keeps data in structures known as dataframes and enables you to alter, clean up, or analyze data by c
9 min read
ChatGPT Prompt to get Datasets for Machine Learning
With the development of machine learning, access to high-quality datasets is becoming increasingly important. Datasets are crucial for assessing the accuracy and effectiveness of the final model, which is a prerequisite for any machine learning project. In this article, we'll learn how to use a Chat
7 min read
How To Implement ChatGPT In Django
Integrating ChatGPT into a Django application allows you to create dynamic and interactive chat interfaces. By following the steps outlined in this article, you can implement ChatGPT in your Django project and provide users with engaging conversational experiences. Experiment with different prompts,
4 min read