mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-11 13:55:03 +00:00
Adds a Python REPL that executes code in a code interpreter session using Azure Container Apps dynamic sessions. --------- Co-authored-by: Erick Friis <erick@langchain.dev>
10 lines
188 B
Python
10 lines
188 B
Python
from langchain_azure_dynamic_sessions import __all__
|
|
|
|
EXPECTED_ALL = [
|
|
"SessionsPythonREPLTool",
|
|
]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert sorted(EXPECTED_ALL) == sorted(__all__)
|