Reproducing results in the short course: langchain - chat with your data

hi,

I am working through the code shown in this short course:

LangChain: Chat with Your Data

I thought there might be a github repo with the Jupyter notebooks from the course, so I looked.
I did find a few but I’m running into Python library dependency issues.

Unfortunately none of the repos I’ve found have Docker files or Pipfiles or requirements.txt with locked version number - any of which would be lovely.

my question is: has anyone reproduced the results shown in that short course? if so, could they please share a “pip freeze”? :slight_smile:

thanks!

Redistributing the course notebooks via a public repo would be against the Code of Conduct.

I will read the CoC. thanks

to be clear, i was thinking about public repos.

Public repos are even worse, I’ll amend my reply.

got it. on the positive side, my investigation suggests that people are following CoC.

Any ideas how to overcome in L7 of this course the error listed below? Thanks

cell5:

question = "What are major topics for this class?"
docs = vectordb.similarity_search(question,k=3)
len(docs)
Retrying langchain.embeddings.openai.embed_with_retry.<locals>._embed_with_retry in 4.0 seconds as it raised RateLimitError: exceeded quota for this month.
Retrying langchain.embeddings.openai.embed_with_retry.<locals>._embed_with_retry in 4.0 seconds as it raised RateLimitError: exceeded quota for this month.
Retrying langchain.embeddings.openai.embed_with_retry.<locals>._embed_with_retry in 4.0 seconds as it raised RateLimitError: exceeded quota for this month.
Retrying langchain.embeddings.openai.embed_with_retry.<locals>._embed_with_retry in 8.0 seconds as it raised RateLimitError: exceeded quota for this month.
1 Like

what is the solution for the monthly limit exceeded issue? do you know by any chance?