├── .devcontainer └── devcontainer.json ├── .gitignore ├── LICENSE.txt ├── README.md ├── examples ├── Langchain_wenxin_retrieval_qa_compared.ipynb └── langfuse.ipynb ├── pyproject.toml ├── src └── langchain_wenxin │ ├── __about__.py │ ├── __init__.py │ ├── chat_models.py │ ├── client.py │ ├── embeddings.py │ ├── llms.py │ └── retrievers.py └── tests ├── __init__.py ├── integration_tests ├── __init__.py ├── chat_models │ ├── __init__.py │ └── test_wenxin.py ├── embeddings │ ├── __init__.py │ └── test_wenxin.py └── llms │ ├── __init__.py │ └── test_wenxin.py └── tools ├── __init__.py └── test_callbacks.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/README.md -------------------------------------------------------------------------------- /examples/Langchain_wenxin_retrieval_qa_compared.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/examples/Langchain_wenxin_retrieval_qa_compared.ipynb -------------------------------------------------------------------------------- /examples/langfuse.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/examples/langfuse.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/langchain_wenxin/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/src/langchain_wenxin/__about__.py -------------------------------------------------------------------------------- /src/langchain_wenxin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/src/langchain_wenxin/__init__.py -------------------------------------------------------------------------------- /src/langchain_wenxin/chat_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/src/langchain_wenxin/chat_models.py -------------------------------------------------------------------------------- /src/langchain_wenxin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/src/langchain_wenxin/client.py -------------------------------------------------------------------------------- /src/langchain_wenxin/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/src/langchain_wenxin/embeddings.py -------------------------------------------------------------------------------- /src/langchain_wenxin/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/src/langchain_wenxin/llms.py -------------------------------------------------------------------------------- /src/langchain_wenxin/retrievers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/src/langchain_wenxin/retrievers.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/chat_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/chat_models/test_wenxin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/tests/integration_tests/chat_models/test_wenxin.py -------------------------------------------------------------------------------- /tests/integration_tests/embeddings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/embeddings/test_wenxin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/tests/integration_tests/embeddings/test_wenxin.py -------------------------------------------------------------------------------- /tests/integration_tests/llms/__init__.py: -------------------------------------------------------------------------------- 1 | """All integration tests for LLM objects.""" 2 | -------------------------------------------------------------------------------- /tests/integration_tests/llms/test_wenxin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/tests/integration_tests/llms/test_wenxin.py -------------------------------------------------------------------------------- /tests/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tools/test_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninehills/langchain-wenxin/HEAD/tests/tools/test_callbacks.py --------------------------------------------------------------------------------