在此公告中:https://openai.com/blog/gpt-3-edit-insert,一种插入模式,可以让你在文本中间完成。我如何通过Open AI GPT模型的完成API来完成它?
例如,在代码完成的情况下(Github Copilot目前正在做):
def say_hello():
print('hi', name)
字符串
应在括号内使用name
参数完成:
def say_hello(name):
print('hi', name)
型
在此公告中:https://openai.com/blog/gpt-3-edit-insert,一种插入模式,可以让你在文本中间完成。我如何通过Open AI GPT模型的完成API来完成它?
例如,在代码完成的情况下(Github Copilot目前正在做):
def say_hello():
print('hi', name)
字符串
应在括号内使用name
参数完成:
def say_hello(name):
print('hi', name)
型
1条答案
按热度按时间bf1o4zei1#
正如insertion instruction guide解释的那样,我们可以使用
suffix
参数来提供位于您想要插入新补全的位置之后的文本。字符串