Back to Airflow

OpenAI Connection

providers/openai/docs/connections.rst

3.2.11.9 KB
Original Source

.. Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

.. http://www.apache.org/licenses/LICENSE-2.0

.. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

.. _howto/connection:openai:

OpenAI Connection

The OpenAI <https://openai.com/>__ connection type enables access to OpenAI APIs.

Default Connection IDs

OpenAI hook points to openai_default connection by default.

Configuring the Connection

API Key (required) Specify your OpenAI API Key to connect.

Host (optional) The host address of the OpenAI instance.

Extra (optional) Specify the extra parameters (as json dictionary) that can be used in the connection. All parameters are optional. This extra field accepts a nested dictionary with key openai_client_kwargs as key-value pairs that are passed to the OpenAI client <https://github.com/openai/openai-python/blob/main/src/openai/_client.py>__ on instantiation. For example, to set the timeout for the client, you can pass the following dictionary as the extra field:

.. code-block:: json

    {
      "openai_client_kwargs": {
        "timeout": 10,
        "api_key": "YOUR_API_KEY"
      }
    }