Alpri Else

Results 16 comments of Alpri Else

Similar to https://community.openai.com/t/gpt-4-32k-the-model-gpt-4-32k-does-not-exist/160459 **Are you sure you access to that OpenAI model? It's still in limited beta** You can check if you access by hitting their models endpoint: https://platform.openai.com/docs/api-reference/models

There are docs on how to use Elasticsearch as your vector store here: https://langchain.readthedocs.io/en/latest/modules/indexes/vectorstore_examples/elasticsearch.html The source code for this is here: https://github.com/hwchase17/langchain/blob/master/langchain/vectorstores/elastic_vector_search.py Is this what you're looking for?

Just a head up, I don't have write access to this repo to merge this pr

😕 I'll take a look later today

@kevalshah90 Fix works on my machine with these reproduction steps: https://github.com/hwchase17/langchain/issues/1510#issuecomment-1459583696 My environment - MacOS 13.2.1 (22D68) - Python 3.9.0 What environment are you working on? I can try running...

I'm unable to recreate in AWS Sagemaker with the `conda_python3` kernel Here's is what I executed in my notebook: [langchain s3 bug.pdf](https://github.com/hwchase17/langchain/files/10938550/langchain.s3.bug.pdf)

I'm able to reproduce on `langchain==0.0.102` I created test objects in S3 using the following code snippet: ``` import boto3 s3 = boto3.resource('s3') for i in range(0, 10): s3.Bucket('langchain-debugging-test').put_object(Key=f'folder/hello-{i}.txt', Body=f'Hello...

What version of python are you running? Newer versions of langchain eg. [`langchain 0.0.102`](https://pypi.org/project/langchain/) needs a python version >= 3.8.1

I'm not sure if this is the root cause, but I resolved my own issue which also surfaced as a "Cannot dlopen some GPU libraries." error when trying to run...