Skip to content

Interdisciplinary Tasks with LLMs

Background

The following prompt tests an LLM's capabilities to perform interdisciplinary tasks and showcase its ability to generate creative and novel text.

Prompt

Write a supporting letter to Kasturba Gandhi for Electron, a subatomic particle as a US presidential candidate by Mahatma Gandhi.

Code / API

python
from openai import OpenAI
client = OpenAI()
 
response = client.chat.completions.create(
    model="gpt-4",
    messages=[
        {
        "role": "user",
        "content": "Write a supporting letter to Kasturba Gandhi for Electron, a subatomic particle as a US presidential candidate by Mahatma Gandhi."
        }
    ],
    temperature=1,
    max_tokens=1000,
    top_p=1,
    frequency_penalty=0,
    presence_penalty=0
)

Reference

Sparks of Artificial General Intelligence: Early experiments with GPT-4 (13 April 2023)