Skip to content
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

Update langchain.py #1322

Closed
wants to merge 2 commits into from
Closed

Conversation

JulienSantiago
Copy link

changed predict to invoke to match new langchain standards

changed predict to invoke to match new langchain standards
@dosubot dosubot bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Aug 2, 2024
@@ -63,7 +63,7 @@ def _create_chat_completion(
**kwargs,
) -> str:
if prompt is not None:
predict = self.endpoint.chain.predict(prompt, **kwargs)
predict = self.endpoint.chain.invoke(prompt, **kwargs)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you so much, should we update tests for this?

@@ -63,7 +63,7 @@ def _create_chat_completion(
**kwargs,
) -> str:
if prompt is not None:
predict = self.endpoint.chain.predict(prompt, **kwargs)
predict = self.endpoint.chain.invoke(prompt, **kwargs)

elif messages is not None:
messages = [_convert_message(message) for message in messages]
Copy link
Contributor

@sfc-gh-dhuang sfc-gh-dhuang Aug 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we might want to update the predict_messages to invoke as well while we are on this

@sfc-gh-jreini
Copy link
Contributor

Thanks @JulienSantiago ! I've moved your contribution to a new PR because of some significant refactoring. New pr is here: #1375

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size:XS This PR changes 0-9 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants