umair mehmood

Results 5 issues of umair mehmood

I have installed Python in my machine and I can access Python from cmd and windows terminal but here it opens Microsoft store for example ``C:\> python`` should open python...

on visiting localhost:8000, or localhost:8000/admin/ I get his error 'djdt' is not a registered namespace Error during template rendering In template D:\Python\Django\django-production-template\venv\lib\site-packages\debug_toolbar\templates\debug_toolbar\base.html, error at line 10 'djdt' is not a...

I get this error when I try to import ``User`` Model ``(venv) D:\Python\Django\django-production-template\simple>python`` ``` Python 3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)] on win32 Type "help",...

System: MacOS dependecies: ``` langchain==0.0.221 openai==0.27.8 tiktoken==0.4.0 jq==1.4.1 ``` code ``` .... self.llm = ChatOpenAI(model_name='gpt-3.5-turbo-16k', verbose=True) self.llm_chain = LLMChain( llm=self.llm, prompt=prompt, ) doc_chain = load_qa_chain(self.llm, chain_type="map_reduce") self.conversational_chain = ConversationalRetrievalChain( retriever=self.retriever,...