File tree Expand file tree Collapse file tree 2 files changed +22
-3
lines changed Expand file tree Collapse file tree 2 files changed +22
-3
lines changed Original file line number Diff line number Diff line change
1
+ # see:
2
+ # - https://github.com/FullStackWithLawrence/aws-openai/settings/installations
3
+ # - https://docs.mergify.com/getting-started/
4
+ pull_request_rules :
5
+ - name : automatic approve dependabot pull requests
6
+ conditions :
7
+ - " author~=dependabot[bot]|dependabot-preview[bot]|dependabot"
8
+ actions :
9
+ review :
10
+ type : APPROVE
11
+
12
+ - name : automatic merge dependabot pull requests
13
+ conditions :
14
+ - " author~=dependabot[bot]|dependabot-preview[bot]|dependabot"
15
+ - " #approved-reviews-by>=1"
16
+ - " base=main" # replace 'main' with the name of the branch you want to auto-merge into
17
+ actions :
18
+ merge :
19
+ method : merge
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- """Setup for hybrid_search_retriever package."""
2
+ """Setup for openai_embeddings package."""
3
3
from setuptools import find_packages , setup
4
4
5
5
from setup_utils import get_semantic_version # pylint: disable=import-error
6
6
7
7
8
8
setup (
9
- name = "hybrid_search_retriever " ,
9
+ name = "openai_embeddings " ,
10
10
version = get_semantic_version (),
11
11
description = """A Hybrid Search and Augmented Generation prompting solution using
12
12
Python [OpenAI](https://openai.com/) embeddings sourced from
16
16
author_email = "lpm0073@gmail.com" ,
17
17
packages = find_packages (),
18
18
package_data = {
19
- "hybrid_search_retriever " : ["*.md" ],
19
+ "openai_embeddings " : ["*.md" ],
20
20
},
21
21
install_requires = [
22
22
"langchain>=0.0.341" ,
You can’t perform that action at this time.
0 commit comments