Source code for tests.system.openai.example_openai
# 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.from__future__importannotationsimportpendulumfromairflow.decoratorsimportdag,taskfromairflow.providers.openai.hooks.openaiimportOpenAIHookfromairflow.providers.openai.operators.openaiimportOpenAIEmbeddingOperator
[docs]defexample_openai_dag():""" ### TaskFlow API Tutorial Documentation This is a simple data pipeline example which demonstrates the use of the TaskFlow API using three simple tasks for Extract, Transform, and Load. Documentation that goes along with the Airflow TaskFlow API tutorial is located [here](https://airflow.apache.org/docs/apache-airflow/stable/tutorial_taskflow_api.html) """texts=["On Kernel-Target Alignment. We describe a family of global optimization procedures"," that automatically decompose optimization problems into smaller loosely coupled"," problems, then combine the solutions of these with message passing algorithms.",]@task()defcreate_embeddings_using_hook():""" #### Extract task A simple Extract task to get data ready for the rest of the data pipeline. In this case, getting data is simulated by reading from a hardcoded JSON string. """openai_hook=OpenAIHook()embeddings=openai_hook.create_embeddings(texts[0])returnembeddings@task()deftask_to_store_input_text_in_xcom():returntexts[0]# [START howto_operator_openai_embedding]OpenAIEmbeddingOperator(task_id="embedding_using_xcom_data",conn_id="openai_default",input_text=task_to_store_input_text_in_xcom(),model="text-embedding-ada-002",)OpenAIEmbeddingOperator(task_id="embedding_using_callable",conn_id="openai_default",input_text=input_text_callable("input_arg1_value","input2_value",input_kwarg1="input_kwarg1_value",input_kwarg2="input_kwarg2_value",),model="text-embedding-ada-002",)OpenAIEmbeddingOperator(task_id="embedding_using_text",conn_id="openai_default",input_text=texts,model="text-embedding-ada-002",)# [END howto_operator_openai_embedding]create_embeddings_using_hook()
example_openai_dag()fromtests_common.test_utils.system_testsimportget_test_run# noqa: E402# Needed to run the example DAG with pytest (see: tests/system/README.md#run_via_pytest)