-
Notifications
You must be signed in to change notification settings - Fork 16.3k
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
community: migrate bigdl-llm
to ipex-llm
#19518
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we add a redirect to docs/vercel.json
to point from old url to new url
@@ -10,22 +10,22 @@ | |||
logger = logging.getLogger(__name__) | |||
|
|||
|
|||
class BigdlLLM(LLM): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for backwards compatibility can we keep around a bigdl.py file and does
from langchain_community.llms.ipex_llm import IPEXLLM
BigdlLLM = IPEXLLM
that way existing code that uses this integration won't break
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the comment. I could not use BigdlLLM = IPEXLLM
as the imports are different. Instead I inherite from IpexLLM and override necessary methods.
Ipex llm fix
add old url redirection
fix format
added the url redirection |
@baskaryan Please kindly let me know if there's anything else I need to change. |
remove redundant url
- **Description**: `bigdl-llm` library has been renamed to [`ipex-llm`](https://github.com/intel-analytics/ipex-llm). This PR migrates the `bigdl-llm` integration to `ipex-llm` . - **Issue**: N/A. The original PR of `bigdl-llm` is langchain-ai#17953 - **Dependencies**: `ipex-llm` library - **Contribution maintainer**: @shane-huang Updated doc: docs/docs/integrations/llms/ipex_llm.ipynb Updated test: libs/community/tests/integration_tests/llms/test_ipex_llm.py
- **Description**: `bigdl-llm` library has been renamed to [`ipex-llm`](https://github.com/intel-analytics/ipex-llm). This PR migrates the `bigdl-llm` integration to `ipex-llm` . - **Issue**: N/A. The original PR of `bigdl-llm` is #17953 - **Dependencies**: `ipex-llm` library - **Contribution maintainer**: @shane-huang Updated doc: docs/docs/integrations/llms/ipex_llm.ipynb Updated test: libs/community/tests/integration_tests/llms/test_ipex_llm.py
bigdl-llm
library has been renamed toipex-llm
. This PR migrates thebigdl-llm
integration toipex-llm
.bigdl-llm
is community: add BigDL-LLM integrations #17953ipex-llm
libraryUpdated doc: docs/docs/integrations/llms/ipex_llm.ipynb
Updated test: libs/community/tests/integration_tests/llms/test_ipex_llm.py