-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[wip] quickstart langchain #304
base: master
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for condescending-goldwasser-91acf0 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are some minor comments, but overall, it's a good starting point. I'd love to see the content of the document.txt
and the app's outputs. Otherwise, I have no idea if the answers are accurate.
qdrant-landing/content/documentation/quickstart/quickstart-langchain.md
Outdated
Show resolved
Hide resolved
qdrant-landing/content/documentation/quickstart/quickstart-langchain.md
Outdated
Show resolved
Hide resolved
qdrant-landing/content/documentation/quickstart/quickstart-langchain.md
Outdated
Show resolved
Hide resolved
qdrant-landing/content/documentation/quickstart/quickstart-langchain.md
Outdated
Show resolved
Hide resolved
qdrant-landing/content/documentation/quickstart/quickstart-langchain.md
Outdated
Show resolved
Hide resolved
os.environ['QDRANT_HOST'] = # "PASTE CLUSTER HOSTNAME HERE" | ||
os.environ['QDRANT_API_KEY'] = # "PASTE QDRANT API KEY HERE" | ||
|
||
|
||
client = qdrant_client.QdrantClient( | ||
os.getenv("QDRANT_HOST"), | ||
api_key=os.getenv("QDRANT_API_KEY") | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about setting the host and API key directly in QdrantClient
? The env variables are not required
-wrote code
-added to QuickStarts in documentation
-still need to do some more storytelling and add the sample doc