From 16b880ce2b0ebe05b15ee50c5ccb3ec157ca75ae Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Wed, 13 Nov 2024 18:58:38 -0800 Subject: [PATCH 1/2] wip --- python/docs/_static/css/custom.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/python/docs/_static/css/custom.css b/python/docs/_static/css/custom.css index 87195de8f..49c502dd7 100644 --- a/python/docs/_static/css/custom.css +++ b/python/docs/_static/css/custom.css @@ -408,4 +408,23 @@ dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(. p { font-size: 0.9rem; margin-bottom: 0.5rem; +} + +.gp { + display: none !important; +} + +.doctest-output { + margin-top: 1rem; + margin-bottom: 1rem; + padding: 1rem; + background-color: #f8f9fa; + border-left: 3px solid #dee2e6; + color: #666; + font-family: var(--pst-font-family-monospace); +} + +.highlight + .highlight, +.highlight + .doctest-output { + margin-top: 1rem; } \ No newline at end of file From e87bfe7807aa67cc90656e4be23b4d5546935a44 Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Thu, 14 Nov 2024 17:16:27 -0800 Subject: [PATCH 2/2] removed --- python/docs/create_api_rst.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/docs/create_api_rst.py b/python/docs/create_api_rst.py index 253352767..a16db7dfa 100644 --- a/python/docs/create_api_rst.py +++ b/python/docs/create_api_rst.py @@ -62,6 +62,8 @@ class ModuleMembers(TypedDict): "as_runnable", "SupportsLangsmithExtra", "get_tracing_context", + "run_evaluator", + "comparison_evaluator" } _EXCLUDED_MODULES = {"cli"}