This commit is contained in:
Timothy J. Baek 2024-06-01 17:03:03 -07:00
parent 68f15be92b
commit fb7ffc9dc3

View File

@ -3,7 +3,7 @@ from blueprints.function_calling_blueprint import Pipeline as FunctionCallingBlu
class Pipeline(FunctionCallingBlueprint):
class Valves(FunctionCallingBlueprint.Valves):
# Add your custom parameters here
# Add your custom valves here
pass
class Tools:
@ -11,6 +11,7 @@ class Pipeline(FunctionCallingBlueprint):
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