This repository has been archived by the owner on Jan 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 644
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding support for qdrant and bumping langchain version
- Loading branch information
1 parent
8e8742e
commit 8c15f53
Showing
224 changed files
with
34,042 additions
and
884 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 |
---|---|---|
@@ -1,4 +1,18 @@ | ||
# Required for openai azure ------------------------------------------------------------------ | ||
USE_AZURE_OPENAI=true | ||
AZURE_OPENAI_API_KEY=5c25fe261edc4b0eb10417e5cda51689 | ||
AZURE_OPENAI_API_INSTANCE_NAME=shanurrahman | ||
AZURE_OPENAI_API_COMPLETIONS_DEPLOYMENT_NAME=emailclassifier | ||
AZURE_OPENAI_API_EMBEDDINGS_DEPLOYMENT_NAME=emailclassifierembedding | ||
AZURE_OPENAI_API_VERSION=2023-03-15-preview | ||
# -------------------------------------------------------------------------------------------- | ||
|
||
OPENAI_API_KEY= | ||
PINECONE_API_KEY= | ||
PINECONE_ENVIRONMENT= | ||
PINECONE_INDEX_NAME= | ||
PINECONE_API_KEY=2da8059e-748e-4e15-9f14-aa6f1d21a778 | ||
PINECONE_ENVIRONMENT=asia-southeast1-gcp-free | ||
PINECONE_INDEX_NAME=kurtzweil | ||
|
||
|
||
# QDRANT_URL | ||
QDRANT_URL=http://qdrant:6333 | ||
STORE=qdrant |
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { VectorOperationsApi } from "@pinecone-database/pinecone/dist/pinecone-generated-ts-fetch"; | ||
|
||
export interface StoreOptions { | ||
namespace?: string; | ||
index?: VectorOperationsApi; | ||
} |
Oops, something went wrong.