mirror of
https://github.com/hwchase17/langchain.git
synced 2026-03-19 11:34:13 +00:00
10 lines
210 B
Python
10 lines
210 B
Python
def test_default_code() -> None:
|
|
with open("../langchain_cli/project_template/app/server.py", "r") as f:
|
|
server_code = f.read()
|
|
|
|
out_code = add_route_code(
|
|
server_code,
|
|
)
|
|
|
|
# add
|