Skip to content

Commit

Permalink
refac
Browse files Browse the repository at this point in the history
  • Loading branch information
tjbck committed Jun 2, 2024
1 parent 68f15be commit fb7ffc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/scaffolds/function_calling_scaffold.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@

class Pipeline(FunctionCallingBlueprint):
class Valves(FunctionCallingBlueprint.Valves):
# Add your custom parameters here
# Add your custom valves here
pass

class Tools:
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

Expand Down

0 comments on commit fb7ffc9

Please sign in to comment.