Zephyrnet-logo

Nieuwe GPT-3-mogelijkheden: bewerken en invoegen

Datum:

Nieuwe GPT-3-mogelijkheden: bewerken en invoegen

We hebben nieuwe versies uitgebracht van GPT-3 en Codex die inhoud in bestaande tekst kan bewerken of invoegen, in plaats van alleen bestaande tekst aan te vullen. Deze nieuwe mogelijkheden maken het praktisch om de OpenAI-API om bestaande inhoud te herzien, zoals het herschrijven van een alinea tekst of het herstructureren van code. Dit ontgrendelt nieuwe gebruiksscenario's en verbetert bestaande; invoeging wordt bijvoorbeeld al uitgeprobeerd GitHub-copiloot met veelbelovende vroege resultaten.

Lees Documentatie bewerken


Documentatie bijvoegen lezen


Probeer in Speeltuin
 
def___

fib(10)

 
def fib(n): if n <= 1 1: return fib(n-1) + fib(n-2) 
fib(10)
 
def fib(n): if n <= 1 1: return fib(n-1) + fib(n-2) 
fib(10)
Verbeteren
def fib(n): if n <= 1 1: return fib(n-1) + fib(n-2) 
fib(10)
Verbeter de
def fib(n): if n <= 1 1: return fib(n-1) + fib(n-2) 
fib(10)
Verbeter de looptijd
def fib(n): if n <= 1 1: return fib(n-1) + fib(n-2) 
fib(10)
Verbeter de runtime-complexiteit
def fib(n): if n <= 1 1: return fib(n-1) + fib(n-2) 
fib(10)
Verbeter de runtime-complexiteit van de
def fib(n): if n <= 1 1: return fib(n-1) + fib(n-2) 
fib(10)
Verbeter de runtime-complexiteit van de functie
def fib(n): if n <= 1 1: return fib(n-1) + fib(n-2) 
fib(10)
Verbeter de runtime-complexiteit van de functie
def fib(n, memo={}): if n in memo: return memo[n] if n <= 1: f="1" else: memo) + fib(n-2, memo[n]="f" return f
 
def fib(n, memo={}): if n in memo: return memo[n] if n <= 1: f="1" else: memo) + fib(n-2, memo[n]="f" return f
Translate
def fib(n, memo={}): if n in memo: return memo[n] if n <= 1: f="1" else: memo) + fib(n-2, memo[n]="f" return f
Translate to
def fib(n, memo={}): if n in memo: return memo[n] if n <= 1: f="1" else: memo) + fib(n-2, memo[n]="f" return f
Translate to JavaScript
def fib(n, memo={}): if n in memo: return memo[n] if n <= 1: f="1" else: memo) + fib(n-2, memo[n]="f" return f
Translate to JavaScript
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { if (n in memo) return memo[n]; var f; if (n <= 1) f="1;" else memo) + fib(n-2, memo); memo[n]="f;" return f; })(n, }
 
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { if (n in memo) return memo[n]; var f; if (n <= 1) f="1;" else memo) + fib(n-2, memo); memo[n]="f;" return f; })(n, }
Write
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { if (n in memo) return memo[n]; var f; if (n <= 1) f="1;" else memo) + fib(n-2, memo); memo[n]="f;" return f; })(n, }
Write this
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { if (n in memo) return memo[n]; var f; if (n <= 1) f="1;" else memo) + fib(n-2, memo); memo[n]="f;" return f; })(n, }
Write this as
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { if (n in memo) return memo[n]; var f; if (n <= 1) f="1;" else memo) + fib(n-2, memo); memo[n]="f;" return f; })(n, }
Write this as a
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { if (n in memo) return memo[n]; var f; if (n <= 1) f="1;" else memo) + fib(n-2, memo); memo[n]="f;" return f; })(n, }
Write this as a one
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { if (n in memo) return memo[n]; var f; if (n <= 1) f="1;" else memo) + fib(n-2, memo); memo[n]="f;" return f; })(n, }
Write this as a one-liner
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { if (n in memo) return memo[n]; var f; if (n <= 1) f="1;" else memo) + fib(n-2, memo); memo[n]="f;" return f; })(n, }
Write this as a one-liner
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { return n in memo ? memo[n] : (memo[n] = n <= 1 ? : fib(n-1, memo) + fib(n-2, memo)); })(n, memo); }
 

function fibonacci(n) { var memo = {}; return (function fib(n, memo) { return n in memo ? memo[n] : (memo[n] = n <= 1 ? : fib(n-1, memo) + fib(n-2, memo)); })(n, memo); }
 
/
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { return n in memo ? memo[n] : (memo[n] = n <= 1 ? : fib(n-1, memo) + fib(n-2, memo)); })(n, memo); }
 
/**
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { return n in memo ? memo[n] : (memo[n] = n <= 1 ? : fib(n-1, memo) + fib(n-2, memo)); })(n, memo); }
 
/**___
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { return n in memo ? memo[n] : (memo[n] = n <= 1 ? : fib(n-1, memo) + fib(n-2, memo)); })(n, memo); }
 
/**​ * Recursive Fibonacci function with memoization. * @param {number} n * @returns {number} */
function fibonacci(n) { var memo = {}; return (function fib(n, memo) { return n in memo ? memo[n] : (memo[n] = n <= 1 ? : fib(n-1, memo) + fib(n-2, memo)); })(n, memo); }

GPT-3 and Codex have traditionally added text to the end of existing content, based on the text that came before. Whether working with text or code, writing is more than just appending—it’s an iterative process where existing text is revised. GPT-3 and Codex can now edit text, changing what’s currently there or adding text to the middle of content.

Inserting into the middle of text

The new insert capability adds contextually relevant text in the middle of existing content. Providing future context to the model can improve the quality of completions for applications such as writing long-form text, transitioning between paragraphs, following an outline, or guiding the model toward an ending.

Section 1. High school graduation

Today's the big day!___

Section 1. High school graduation

Today's the big day! Congratulations to all our high school graduates!

We hope you enjoy your graduation ceremonies and wish you the best of luck in your future endeavors.

Section 1. High school graduation

Today's the big day! Congratulations to all our high school graduates!

We hope you enjoy your graduation ceremonies and wish you the best of luck in your future endeavors.

Section

Section 1. High school graduation

Today's the big day! Congratulations to all our high school graduates!

We hope you enjoy your graduation ceremonies and wish you the best of luck in your future endeavors.

Section 2.

Section 1. High school graduation

Today's the big day! Congratulations to all our high school graduates!

We hope you enjoy your graduation ceremonies and wish you the best of luck in your future endeavors.

Section 2. Moving

Section 1. High school graduation

Today's the big day! Congratulations to all our high school graduates!

We hope you enjoy your graduation ceremonies and wish you the best of luck in your future endeavors.

Section 2. Moving to

Section 1. High school graduation

Today's the big day! Congratulations to all our high school graduates!

We hope you enjoy your graduation ceremonies and wish you the best of luck in your future endeavors.

Section 2. Moving to San Francisco

Section 1. High school graduation

Today's the big day! I'm graduating from high school. I'm so excited. I'm going to move to San Francisco and start a new life. I can't wait to get there.

Section 2. Moving to San Francisco

Section 1. High school graduation

Today's the big day! I'm graduating from high school. I'm so excited. I'm going to move to San Francisco and start a new life. I can't wait to get there.

Section 2. Moving to

Section 1. High school graduation

Today's the big day! I'm graduating from high school. I'm so excited. I'm going to move to San Francisco and start a new life. I can't wait to get there.

Section 2. Moving to Istanbul

Section 1. High school graduation

Today's the big day! I'm graduating from high school. I'm so excited to be moving on to the next chapter of my life. I'm going to Istanbul!

Section 2. Moving to Istanbul

Section 1. High school graduation

Today's the big day! I'm graduating from high school. I'm so excited to be moving on to the next chapter of my life. I'm going to Istanbul!

Section 2. Moving to

Section 1. High school graduation

Today's the big day! I'm graduating from high school. I'm so excited to be moving on to the next chapter of my life. I'm going to Istanbul!

Section 2. Moving to the

Section 1. High school graduation

Today's the big day! I'm graduating from high school. I'm so excited to be moving on to the next chapter of my life. I'm going to Istanbul!

Section 2. Moving to the farm

Section 1. High school graduation

Today's the big day! My high school graduation! I'm so excited! I can't wait to leave the city and move to the farm. I want to live a simple, quiet life. I want to get up in the morning, milk the cows, feed the horses, then sit and watch the sunrise. I want to spend the rest of my days traveling the world, reading and writing. I'm so tired of this city life.

Section 2. Moving to the farm

In the example above, the desire is to fill-in text between two section headers of an outline. Without the context of future sections, the model generates a completion that isn't relevant to the second section. When the context of future sections are accounted for, the model generates a completion that ties the two sections together.

def get_files(path: str, size: int): def___ for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)
def get_files(path: str, size: int): def prune(dirp, files): for file in files: file = os.path.join(dirp, file) if os.path.getsize(file) > size: yield file for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)

def get_files(path: str, size: int): def prune(dirp, files): for file in files: file = os.path.join(dirp, file) if os.path.getsize(file) > size: yield file for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)
___
def get_files(path: str, size: int): def prune(dirp, files): for file in files: file = os.path.join(dirp, file) if os.path.getsize(file) > size: yield file for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)
import os
def get_files(path: str, size: int): def prune(dirp, files): for file in files: file = os.path.join(dirp, file) if os.path.getsize(file) > size: yield file for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)
import os
def get_files(path: str, size: int): """ def prune(dirp, files): for file in files: file = os.path.join(dirp, file) if os.path.getsize(file) > size: yield file for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)
import os
def get_files(path: str, size: int): """___ def prune(dirp, files): for file in files: file = os.path.join(dirp, file) if os.path.getsize(file) > size: yield file for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)
import os
def get_files(path: str, size: int): """___""" def prune(dirp, files): for file in files: file = os.path.join(dirp, file) if os.path.getsize(file) > size: yield file for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)
import os
def get_files(path: str, size: int): """Yields files in the path tree of min size""" def prune(dirp, files): for file in files: file = os.path.join(dirp, file) if os.path.getsize(file) > size: yield file for (dirp, _, files) in os.walk(path): yield from prune(dirp, files)

Insert is particularly useful for writing code. In fact, Codex was our original motivation for developing this capability, since in software development we typically add code to the middle of an existing file where code is present before and after the completion. In the example above, the model successfully completes the missing function prune, while connecting to code already written. We also add a docstring and missing imports, which is not possible without knowing the code that comes after. In GitHub Copilot, Insert is currently being piloted with early promising results.

The insert capability is available in the API today in beta, as part of the completions endpoint and via a new interface in Playground. The capability can be used with the latest versions of GPT-3 and Codex, text-davinci-002 and code-davinci-002. Pricing is the same as previous versions of Davinci.

Editing existing text

A meaningful part of writing text and code is spent editing existing content. We’ve released a new endpoint in beta called edits that changes existing text via an instruction, instead of completing it.

 
Add
Add a
Add a short poem
Add a short poem about
Add a short poem about GPT-3
Add a short poem about GPT-3
GPT-3 is a very nice AI

That's pretty good at writing replies

When it's asked a question

It gives its suggestion

This is a poem it made that rhymes
 
GPT-3 is a very nice AI

That's pretty good at writing replies

When it's asked a question

It gives its suggestion

This is a poem it made that rhymes
Make
GPT-3 is a very nice AI

That's pretty good at writing replies

When it's asked a question

It gives its suggestion

This is a poem it made that rhymes
Make this
GPT-3 is a very nice AI

That's pretty good at writing replies

When it's asked a question

It gives its suggestion

This is a poem it made that rhymes
Make this in the
GPT-3 is a very nice AI

That's pretty good at writing replies

When it's asked a question

It gives its suggestion

This is a poem it made that rhymes
Make this in the voice
GPT-3 is a very nice AI

That's pretty good at writing replies

When it's asked a question

It gives its suggestion

This is a poem it made that rhymes
Make this in the voice of GPT-3
GPT-3 is a very nice AI

That's pretty good at writing replies

When it's asked a question

It gives its suggestion

This is a poem it made that rhymes
Make this in the voice of GPT-3
I am a very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem it made that rhymes
 
I am a very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem it made that rhymes
Format
I am a very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem it made that rhymes
Format this
I am a very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem it made that rhymes
Format this like a
I am a very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem it made that rhymes
Format this like a letter
I am a very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem it made that rhymes
Format this like a letter and sign
I am a very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem it made that rhymes
Format this like a letter and sign from GPT-3
I am a very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem it made that rhymes
Format this like a letter and sign from GPT-3
Dear Human,

I am very nice AI

I am pretty good at writing replies

When I am asked a question

I give my suggestion

This is a poem I made that rhymes

Kind regards,

GPT-3

Editing works by specifying existing text as a prompt and an instruction on how to modify it. The edits endpoint can be used to change the tone or structure of text, or make targeted changes like fixing spelling. We’ve also observed edits to work well on empty prompts, thus enabling text generation similar to the completions endpoint. In the example above, we use edits to (1) add a poem, (2) change the poem to be in first-person, (3) transform the poem into a letter, with the appropriate salutation and signature.

 
The three US cities with the worst traffic are:

1. Boston, MA (164 hours) 2. Washington, DC (155 hours) 3. Chicago, IL (138 hours)
Convert
The three US cities with the worst traffic are:

1. Boston, MA (164 hours) 2. Washington, DC (155 hours) 3. Chicago, IL (138 hours)
Convert the list
The three US cities with the worst traffic are:

1. Boston, MA (164 hours) 2. Washington, DC (155 hours) 3. Chicago, IL (138 hours)
Convert the list to JSONL file
The three US cities with the worst traffic are:

1. Boston, MA (164 hours) 2. Washington, DC (155 hours) 3. Chicago, IL (138 hours)
Convert the list to JSONL file with rank
The three US cities with the worst traffic are:

1. Boston, MA (164 hours) 2. Washington, DC (155 hours) 3. Chicago, IL (138 hours)
Convert the list to JSONL file with rank, city
The three US cities with the worst traffic are:

1. Boston, MA (164 hours) 2. Washington, DC (155 hours) 3. Chicago, IL (138 hours)
Convert the list to JSONL file with rank, city, state
The three US cities with the worst traffic are:

1. Boston, MA (164 hours) 2. Washington, DC (155 hours) 3. Chicago, IL (138 hours)
Convert the list to JSONL file with rank, city, state, and hours
The three US cities with the worst traffic are:

1. Boston, MA (164 hours) 2. Washington, DC (155 hours) 3. Chicago, IL (138 hours)
Convert the list to JSONL file with rank, city, state, and hours
[ {"rank": 1, "city": "Boston", "state": "MA", "hours": 164}, {"rank": 2, "city": "Washington DC", "state": "DC", "hours": 155}, {"rank": 3, "city": "Chicago", "state": "IL", "hours": 138}
]
 
[ {"rank": 1, "city": "Boston", "state": "MA", "hours": 164}, {"rank": 2, "city": "Washington DC", "state": "DC", "hours": 155}, {"rank": 3, "city": "Chicago", "state": "IL", "hours": 138}
]
Remove
[ {"rank": 1, "city": "Boston", "state": "MA", "hours": 164}, {"rank": 2, "city": "Washington DC", "state": "DC", "hours": 155}, {"rank": 3, "city": "Chicago", "state": "IL", "hours": 138}
]
Remove rank
[ {"rank": 1, "city": "Boston", "state": "MA", "hours": 164}, {"rank": 2, "city": "Washington DC", "state": "DC", "hours": 155}, {"rank": 3, "city": "Chicago", "state": "IL", "hours": 138}
]
Remove rank and write out
[ {"rank": 1, "city": "Boston", "state": "MA", "hours": 164}, {"rank": 2, "city": "Washington DC", "state": "DC", "hours": 155}, {"rank": 3, "city": "Chicago", "state": "IL", "hours": 138}
]
Remove rank and write out full state names
[ {"rank": 1, "city": "Boston", "state": "MA", "hours": 164}, {"rank": 2, "city": "Washington DC", "state": "DC", "hours": 155}, {"rank": 3, "city": "Chicago", "state": "IL", "hours": 138}
]
Remove rank and write out full state names
[ {"city": "Boston", "state": "Massachusetts", "hours": 164}, {"city": "Washington DC", "state": "District of Columbia", "hours": 155}, {"city": "Chicago", "state": "Illinois", "hours": 138}
]
 
[ {"city": "Boston", "state": "Massachusetts", "hours": 164}, {"city": "Washington DC", "state": "District of Columbia", "hours": 155}, {"city": "Chicago", "state": "Illinois", "hours": 138}
]
Turn
[ {"city": "Boston", "state": "Massachusetts", "hours": 164}, {"city": "Washington DC", "state": "District of Columbia", "hours": 155}, {"city": "Chicago", "state": "Illinois", "hours": 138}
]
Turn into YAML
[ {"city": "Boston", "state": "Massachusetts", "hours": 164}, {"city": "Washington DC", "state": "District of Columbia", "hours": 155}, {"city": "Chicago", "state": "Illinois", "hours": 138}
]
Turn into YAML and return
[ {"city": "Boston", "state": "Massachusetts", "hours": 164}, {"city": "Washington DC", "state": "District of Columbia", "hours": 155}, {"city": "Chicago", "state": "Illinois", "hours": 138}
]
Turn into YAML and return from a function
[ {"city": "Boston", "state": "Massachusetts", "hours": 164}, {"city": "Washington DC", "state": "District of Columbia", "hours": 155}, {"city": "Chicago", "state": "Illinois", "hours": 138}
]
Turn into YAML and return from a function called get_yaml
[ {"city": "Boston", "state": "Massachusetts", "hours": 164}, {"city": "Washington DC", "state": "District of Columbia", "hours": 155}, {"city": "Chicago", "state": "Illinois", "hours": 138}
]
Turn into YAML and return from a function called get_yaml
def get_yaml(): return """ - city: Boston state: Massachusetts hours: 164 - city: Washington DC state: District of Columbia hours: 155 - city: Chicago state: Illinois hours: 138 """

The edits endpoint is particularly useful for writing code. It works well for tasks like refactoring, adding documentation, translating between programming languages, and changing coding style. The example above starts with JSON input containing cities ranked by population. With our first edit, Codex removes the rank field from the JSON, and changes the state abbreviations into full names. The second edit converts the JSON file into YAML returned from a function.

Editing is available as a specialized endpoint in the API and through a new interface in Playground. It is supported by models text-davinci-edits-001 and code-davinci-edits-001. The edits endpoint is currently free to use and publicly available as a beta.

:root { --color-insert: 0,222,34; --color-edit: 0,183,255;
}
.demo { position: relative; user-select: none;
}
.demo-item pre { /* reset */ margin: 0; padding: 0; background-color: unset; white-space: pre-wrap;
}
.demo-item { position: absolute; top: 0; left: 0; opacity: 0; visibility: hidden;
}
.demo[data-active="0"] .demo-item:nth-child(1),
.demo[data-active="1"] .demo-item:nth-child(2),
.demo[data-active="2"] .demo-item:nth-child(3),
.demo[data-active="3"] .demo-item:nth-child(4),
.demo[data-active="4"] .demo-item:nth-child(5),
.demo[data-active="5"] .demo-item:nth-child(6),
.demo[data-active="6"] .demo-item:nth-child(7),
.demo[data-active="7"] .demo-item:nth-child(8),
.demo[data-active="8"] .demo-item:nth-child(9),
.demo[data-active="9"] .demo-item:nth-child(10),
.demo[data-active="10"] .demo-item:nth-child(11),
.demo[data-active="11"] .demo-item:nth-child(12),
.demo[data-active="12"] .demo-item:nth-child(13),
.demo[data-active="13"] .demo-item:nth-child(14),
.demo[data-active="14"] .demo-item:nth-child(15),
.demo[data-active="15"] .demo-item:nth-child(16),
.demo[data-active="16"] .demo-item:nth-child(17),
.demo[data-active="17"] .demo-item:nth-child(18),
.demo[data-active="18"] .demo-item:nth-child(19),
.demo[data-active="19"] .demo-item:nth-child(20),
.demo[data-active="20"] .demo-item:nth-child(21),
.demo[data-active="21"] .demo-item:nth-child(22),
.demo[data-active="22"] .demo-item:nth-child(23),
.demo[data-active="23"] .demo-item:nth-child(24),
.demo[data-active="24"] .demo-item:nth-child(25),
.demo[data-active="25"] .demo-item:nth-child(26),
.demo[data-active="26"] .demo-item:nth-child(27),
.demo[data-active="27"] .demo-item:nth-child(28),
.demo[data-active="28"] .demo-item:nth-child(29),
.demo[data-active="29"] .demo-item:nth-child(30) { opacity: 1; visibility: visible;
}
.demo-item-sizer { position: relative;
}
.demo-item .insert { /* inserted text */ background-color: rgba(var(--color-insert), 0.1);
}
.demo-item .edit { /* edited text */ background-color: rgba(var(--color-edit), 0.1);
}
.demo-item .inst-edit { /* edit instruction */ border-left: 2px solid rgba(var(--color-edit), 1); padding-left: 0.5rem;
}
.demo-item .inst-insert { /* insert instruction */ border-left: 2px solid transparent; padding-left: 0.5rem;
}
.demo-item .inst-comp { /* completed edit instruction */ border-left: 2px solid rgba(var(--fg), 0.5); padding-left: 0.5rem; opacity: 0.2;
}

var initDemos = function () { var demos = document.querySelectorAll('.js-demo'); if (!demos.length) return; // for each set of demos demos.forEach(function (d) { initAnimation(d); });
};
var initAnimation = function (demo) { var limit = demo.childElementCount; var t = demo.children[0].getAttribute('data-t'); doAnimation(demo, 0, limit, t); // start at `0`
};
var doAnimation = function (demo, i, limit, t) { if (i == (limit-1)) { // 'round the corner var newI = 0; } else { // increment var newI = i + 1; } var newT = demo.children[newI].getAttribute('data-t'); setTimeout(function () { demo.setAttribute('data-active', newI); doAnimation(demo, newI, limit, newT); }, t);
};
// call everything
document.addEventListener('DOMContentLoaded', function () { initDemos();
});


Contributions

Research advancements of insert and edit: Mohammad Bavarian, Heewoo Jun, Oleg Klimov, Raul Puri, Qiming Yuan

Developing new versions of GPT-3 and Codex: Sandhini Agarwal, Igor Babuschkin, Greg Brockman, Andrew Carr, Brooke Chan, Chris Hesse, Shantanu Jain, Kyle Kosic, Jakub Pachocki, Alex Paino, Mikhail Pavlov, Vitchyr Pong, Nick Ryder, Szymon Sidor, Nikolas Tezak, Philippe Tillet, Amin Tootoonchian, Jerry Tworek, Lilian Weng, Clemens Winter, Qiming Yuan, Wojciech Zaremba, William Zhuk

Engineering, Product Development, Safety, Policy, and Security: Steven Adler, Sandhini Agarwal, Mohammad Bavarian, Kevin Button, Tyna Eloundou, Angela Jiang, Shino Jomoto, Heewoo Jun, Rajeev Nayak, Henrique Ponde de Oliveira Pinto, Girish Sastry, Maddie Simens, Felipe Such

Blog visuals: Justin Jay Wang


Acknowledgments

Thanks to the following for their feedback on this work and contributions to this release: Diogo Moitinho de Almeida, Che Chang, Elie Georges, Joanne Jang, Roger Jiang, Denny Jin, Fraser Kelton, Tabarak Khan, Matt Knight, Jan Leike, Ryan Lowe, Bianca Martin, Andrew Mayne, Bob McGrew, Luke Miller, Evan Morikawa, Mira Murati, Long Ouyang, Boris Power, William Saunders, Toki Sherbakov, Zarina Stanik, Preston Tuggle, Carroll Wainwright, Peter Welinder, Hannah Wong, Lauren Workman, Jeff Wu, Cathy Yeh

spot_img

Latest Intelligence

spot_img

Chat with us

Hi there! How can I help you?