From fb7ffc9dc3dbbfd54921710f928e5c2c9fd200cd Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sat, 1 Jun 2024 17:03:03 -0700 Subject: [PATCH] refac --- examples/scaffolds/function_calling_scaffold.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/scaffolds/function_calling_scaffold.py b/examples/scaffolds/function_calling_scaffold.py index 387d49fe..2c9f726b 100644 --- a/examples/scaffolds/function_calling_scaffold.py +++ b/examples/scaffolds/function_calling_scaffold.py @@ -3,7 +3,7 @@ class Pipeline(FunctionCallingBlueprint): class Valves(FunctionCallingBlueprint.Valves): - # Add your custom parameters here + # Add your custom valves here pass class Tools: @@ -11,6 +11,7 @@ def __init__(self, pipeline) -> None: self.pipeline = pipeline # Add your custom tools using pure Python code here, make sure to add type hints + # Use Sphinx-style docstrings to document your tools, they will be used for generating tools specifications # Please refer to function_calling_filter_pipeline.py for an example pass