Background

Build next-gen apps with
APIQ’s powerful models.

APIQ’s API provides access to GPT-3, which performs a wide variety of natural language tasks,
and Codex, which translates natural language to code.

GET STARTED

APIQ

AI/ML API FOR THE WORLD

Developers can now customize
GPT-3 for their own applications.

GPT-3 can now be customized via our API. With a single command, developers can fine-tune powerful AI models tailored to their needs.

4

AWARD WINNING PROJECTS

#4

BEST ML/AI API

COMPANIES DEVELOPING WITH APIQ’S API

Start building with
a simple API call.

LEARN MORE

import apiq

apiq.Completion.create(
  engine="davinci",
  prompt="Make a list of astronomical observatories:"
)

Perform a wide variety
of natural language
tasks with GPT-3.

GET STARTED

  • COPYWRITING

    Create promo copy for the FamilyTime mobile application. It allows unlimited uploading, special filters and makes it easy to create albums of photos and videos. It runs on iOS and Android:
    FamilyTime is the perfect app to share and create memories with your family. 
    FamilyTime is a free, unlimited photo and video editor that allows you to create albums of your memories. 
    It has a special filter for the perfect summer look and is so simple to use.

  • SUMMARIZATION

    Summarize this email into a single sentence:

    Dear Olivia,

    The solar energy conference went great. New Horizon Manufacturing wants to meet with us to talk about our photovoltaic window system we’re about to launch.
    I think it would be great to talk this Tuesday.

    Best,
    Allison

    Allison is excited to meet with New Horizon Manufacturing to discuss their photovoltaic window system.

  • PARSING UNSTRUCTURED TEXT

    Answer the following questions about this customer email:

    I’m wondering if you could provide me with information about your cloud services for companies. I’m CTO for Moon Door, a movie production company and want to know if it can help us manage our different projects that are in production.

    Questions:
    1. What industry is the company
    2. What is the name of the company
    3. What are they interested in
    4. What is the customer’s position

    Answers:

    1. The company is in the movie production industry.
    2. The company is Moon Door.
    3. The customer is interested in cloud services for companies.
    4. The customer is the CTO.

  • CLASSIFICATION

    Choose a genre category for each book 1. The Hunger Games, 2. The Kite Runner 3. A Wrinkle in Time (“fiction”, “young adult”, “science fiction”, “fantasy”, “other”) and make a list of the book and its genre:

    1. The Hunger Games: young adult, fiction
    2. The Kite Runner: fiction, young adult
    3. A Wrinkle in Time: science fiction, fantasy, other

  • TRANSLATION

    Translate this into French: Where can I find a bookstore?

    Où puis-je trouver un magasin de livres?

  • TEXT TO SQL TRANSLATION

    """
    Table customers, columns = [CustomerId, FirstName, LastName, Company, Address, City, State, 
    Country, PostalCode, Phone, Fax, Email, SupportRepId, TotalSpend]
    
    Create a MySQL query for all customers in Texas who have spent over five thousand dollars.
    """
    
    query = "SELECT * FROM customers WHERE State = 'TX' AND TotalSpend > 5000"

  • CODE CONTINUATION

    """
    Extract all the html from the string and replace the tags with ''
    """
    
    def extract_html(text):
        return re.sub('<[^<]+?>', '', text)

  • CALLING AN API VIA NATURAL LANGUAGE

    """
    Python 3
    Get the current value of a Bitcoin in US dollars using the bitcoincharts api
    """
    
    import requests
    import json
    
    def get_bitcoin_price():
        url = 'http://api.bitcoincharts.com/v1/weighted_prices.json'
        response = requests.get(url)
        data = json.loads(response.text)
        return data['USD']['7d']
    
    if __name__ == '__main__':
        print(get_bitcoin_price())

Translate natural
language to code
with Codex.

GET STARTED

Fast

Our advanced inference infrastructure provides extremely short response times.

Scalable

We can handle high volume requests that scale with your needs.

Flexible

Easy to use and flexible enough to make machine learning teams more productive.
Background

Get started with OpenAI’s powerful
language and code generation models.

GET STARTED

Built with APIQ’s API

Our API has been deployed in thousands of applications with tasks ranging from helping people learn new languages to solving complex classification problems.

GitHub Copilot

AI pair programmer that helps you write code faster with less work. Using Codex, GitHub Copilot applies the context in your editor and synthesizes whole lines and even entire functions of code.

Keeper Tax

Helps freelancers automatically find tax-deductible expenses by using GPT-3 to interpret data from their bank statements into usable transaction information.

Viable

Helps businesses better and more quickly understand what customers are telling them by using language models, including GPT-3, to analyze customer feedback and generate summaries and insights.

Duolingo

Uses GPT-3 to provide French grammar corrections. An internal Duolingo study shows that use of this feature leads to measurably better second language writing skills!