mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
916332ef5b
- **Description:** Added `langchain_ibm` as an langchain partners package of IBM [watsonx.ai](https://www.ibm.com/products/watsonx-ai) LLM provider (`WatsonxLLM`) - **Dependencies:** [ibm-watsonx-ai](https://pypi.org/project/ibm-watsonx-ai/), - **Tag maintainer:** : --------- Co-authored-by: Erick Friis <erick@langchain.dev>
18 lines
419 B
Python
18 lines
419 B
Python
import sys
|
|
import traceback
|
|
from importlib.machinery import SourceFileLoader
|
|
|
|
if __name__ == "__main__":
|
|
files = sys.argv[1:]
|
|
has_failure = False
|
|
for file in files:
|
|
try:
|
|
SourceFileLoader("x", file).load_module()
|
|
except Exception:
|
|
has_faillure = True
|
|
print(file)
|
|
traceback.print_exc()
|
|
print()
|
|
|
|
sys.exit(1 if has_failure else 0)
|