OpenAI now has an API ↦
For years now I’ve been asking AI/ML experts when these powerful-yet-complicated tools will become available to average developers like you and me. It’s happening! Just look at how high-level this text generation code sample is:
import openai
prompt = """snipped for brevity's sake"""
response = openai.Completion.create(model="davinci",
prompt=prompt,
stop="\n",
temperature=0.9,
max_tokens=100)
They’re oftening all kinds of language tasks: semantic search, summarization, sentiment analysis, content generation, translation, and more. The API is still in beta and there’s a waitlist, but this is exciting news, nonetheless.
Discussion
Sign in or Join to comment or subscribe