e071084ebe
govulncheck / govulncheck (push) Has been cancelled
Lint / golangci-lint (push) Has been cancelled
Run Tests / Unit Tests (push) Has been cancelled
Run Tests / Etcd Integration Tests (push) Has been cancelled
Harness (E2E) / Harnesses (mock LLM) (push) Has been cancelled
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Has been cancelled
18 lines
470 B
Python
18 lines
470 B
Python
"""LangChain Go Micro Integration.
|
|
|
|
This package provides LangChain integration for Go Micro services through
|
|
the Model Context Protocol (MCP).
|
|
"""
|
|
|
|
from langchain_go_micro.toolkit import GoMicroToolkit, GoMicroConfig
|
|
from langchain_go_micro.exceptions import GoMicroError, GoMicroConnectionError, GoMicroAuthError
|
|
|
|
__version__ = "0.1.0"
|
|
__all__ = [
|
|
"GoMicroToolkit",
|
|
"GoMicroConfig",
|
|
"GoMicroError",
|
|
"GoMicroConnectionError",
|
|
"GoMicroAuthError",
|
|
]
|