You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Under Use Cases -> Code Understanding, you will find:
The full tutorial is available below.
Twitter the-algorithm codebase analysis with Deep Lake: A notebook walking through how to parse github source code and run queries conversation.
LangChain codebase analysis with Deep Lake: A notebook walking through how to analyze and do question answering over THIS code base.
In both full tutorials, I think that this line:
model = ChatOpenAI(model='gpt-3.5-turbo') # switch to 'gpt-4'
should be:
model = ChatOpenAI(model_name='gpt-3.5-turbo')
(model_name instead of model)
Beta Was this translation helpful? Give feedback.
All reactions