-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install.sh & Install.bat. Readme Update
- Loading branch information
1 parent
6e7e017
commit d83a726
Showing
27 changed files
with
340 additions
and
4,422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Description: Environment variables for the project. Rename to .env file for use | ||
OPENAI_API_KEY=XXXXXXXXX | ||
MISTRAL_API_KEY=XXXXXXXXX | ||
MIXPANEL_TOKEN=XXXXXXXXX | ||
HUGGINGFACEHUB_API_TOKEN=XXXXXXXXX | ||
COHERE_API_KEY=XXXXXXXXX | ||
JINA_API_KEY=XXXXXXXXX | ||
ENABLE_ANALYTICS=True | ||
SINGLESTOREDB_URL=userid:password@host:port/dbname | ||
PINECONE_API_KEY=XXXXXXXXX |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,10 @@ | |
*.env | ||
*.csv | ||
*.log | ||
*.pyc | ||
*.pyc | ||
*.db | ||
|
||
|
||
!.env-Sample | ||
!.README.md | ||
!.LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
echo Installing RagBuilder | ||
setlocal EnableDelayedExpansion | ||
|
||
echo Downloading Brewfile... | ||
curl -fsSL https://raw.githubusercontent.com/KruxAI/ragbuilder-readme/main/Brewfile -o Brewfile | ||
|
||
echo Reading Brewfile... | ||
echo Installing packages from Brewfile... | ||
for /f "usebackq tokens=*" %%i in ("Brewfile") do ( | ||
python -m pip install %%i | ||
) | ||
|
||
echo Installing ragbuilder... | ||
python -m pip install ragbuilder | ||
|
||
echo Setup completed successfully. | ||
endlocal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,15 @@ | |
long_description = fh.read() | ||
setup( | ||
name='ragbuilder', | ||
version='0.0.5', | ||
version='0.0.6', | ||
author='Ashwin Aravind, Aravind Parameswaran', | ||
author_email='[email protected], [email protected]', | ||
description='RagBuilder is a toolkit designed to help you create optimal Production-ready Retrieval-Augmented Generation (RAG) pipeline for your data', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/kruxai/ragbuilder', | ||
license='Apache 2.0', | ||
license_files=('LICENSE',), | ||
package_dir={'': 'src'}, | ||
packages=find_packages(where='src'), | ||
include_package_data=True, | ||
|
Oops, something went wrong.