utkarsharma2 opened a new pull request, #35094:
URL: https://github.com/apache/airflow/pull/35094

   This PR is part of our larger effort to add first-class integrations to 
support LLMOps that was [presented at Airflow 
Summit](https://www.youtube.com/watch?v=mgA6m3ggKhs&t=4s).
   
   In this PR we are adding Pinecone Provider. Pinecone is a fully managed 
vector database that makes it easy to add vector search to production 
applications. The primary objective of this Provider is to present users with 
an alternative Vector Database. 
   
   Example DAG:
   The PineconeIngestOperator can accept either a list vector or a callable 
returning a list vector.
   ```
   PineconeIngestOperator(
           task_id="pinecone_vector_ingest",
           index_name=index_name,
           input_vectors=[
               ("id1", [1.0, 2.0, 3.0], {"key": "value"}),
               ("id2", [1.0, 2.0, 3.0]),
           ],
           namespace=namespace,
           batch_size=1,
       )
   ```
   Email Discussion related to the effort can be found here - 
https://lists.apache.org/thread/0d669fmy4hn29h5c0wj0ottdskd77ktp


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to