[PR] Add Weaviate Provider [airflow]

2023-10-19 Thread via GitHub
utkarsharma2 opened a new pull request, #35060: URL: https://github.com/apache/airflow/pull/35060 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). This PR

Re: [PR] Add Weaviate Provider [airflow]

2023-10-19 Thread via GitHub
Taragolis commented on code in PR #35060: URL: https://github.com/apache/airflow/pull/35060#discussion_r1365765741 ## airflow/providers/weaviate/operators/weaviate.py: ## @@ -0,0 +1,87 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor licens

Re: [PR] Add Weaviate Provider [airflow]

2023-10-27 Thread via GitHub
utkarsharma2 commented on code in PR #35060: URL: https://github.com/apache/airflow/pull/35060#discussion_r1374470809 ## airflow/providers/weaviate/operators/weaviate.py: ## @@ -0,0 +1,87 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor lic

Re: [PR] Add Weaviate Provider [airflow]

2023-11-02 Thread via GitHub
pankajastro commented on code in PR #35060: URL: https://github.com/apache/airflow/pull/35060#discussion_r1379884803 ## airflow/providers/weaviate/hooks/weaviate.py: ## @@ -0,0 +1,177 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license

Re: [PR] Add Weaviate Provider [airflow]

2023-11-02 Thread via GitHub
eladkal commented on code in PR #35060: URL: https://github.com/apache/airflow/pull/35060#discussion_r1380747548 ## airflow/providers/weaviate/CHANGELOG.rst: ## @@ -0,0 +1,16 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agree

Re: [PR] Add Weaviate Provider [airflow]

2023-11-03 Thread via GitHub
pankajastro commented on code in PR #35060: URL: https://github.com/apache/airflow/pull/35060#discussion_r1382139660 ## airflow/providers/weaviate/CHANGELOG.rst: ## @@ -0,0 +1,16 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +or more contributor license a

Re: [PR] Add Weaviate Provider [airflow]

2023-11-04 Thread via GitHub
pankajastro commented on code in PR #35060: URL: https://github.com/apache/airflow/pull/35060#discussion_r1382380092 ## docs/apache-airflow-providers-weaviate/index.rst: ## @@ -0,0 +1,96 @@ + + .. Licensed to the Apache Software Foundation (ASF) under one +or more contributo

Re: [PR] Add Weaviate Provider [airflow]

2023-11-04 Thread via GitHub
pankajastro commented on code in PR #35060: URL: https://github.com/apache/airflow/pull/35060#discussion_r1382380451 ## airflow/providers/weaviate/CHANGELOG.rst: ## @@ -0,0 +1,26 @@ +.. Licensed to the Apache Software Foundation (ASF) under one +or more contributor license a

Re: [PR] Add Weaviate Provider [airflow]

2023-11-06 Thread via GitHub
pankajastro merged PR #35060: URL: https://github.com/apache/airflow/pull/35060 -- 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...@airf

Re: [PR] Add Weaviate Provider [airflow]

2023-11-06 Thread via GitHub
bolkedebruin commented on PR #35060: URL: https://github.com/apache/airflow/pull/35060#issuecomment-1796203864 Too bad there is no decorator that just wraps the callable like so ```python @task.weaviate def my_task() -> JsonStr: return JsonStr(Something) ``` -- This is