CodeEditor.svelte 1.31 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
8
9
<script>
	import CodeEditor from '$lib/components/common/CodeEditor.svelte';

	export let value = '';

	let boilerplate = `# 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 file from pipelines project for an example

Timothy J. Baek's avatar
Timothy J. Baek committed
10
11
# Tip: Use Ctrl/Cmd + S to format the code

Timothy J. Baek's avatar
Timothy J. Baek committed
12
13
14
from datetime import datetime
import requests

Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
15

Timothy J. Baek's avatar
Timothy J. Baek committed
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class Tools:
    def __init__(self):
        pass

    def get_current_time(self) -> str:
        """
        Get the current time.
        :return: The current time.
        """

        now = datetime.now()
        current_time = now.strftime("%H:%M:%S")
        return f"Current Time = {current_time}"

    def calculator(self, equation: str) -> str:
        """
        Calculate the result of an equation.
        :param equation: The equation to calculate.
        """

        # Avoid using eval in production code
        # https://nedbatchelder.com/blog/201206/eval_really_is_dangerous.html
        try:
            result = eval(equation)
            return f"{equation} = {result}"
        except Exception as e:
            print(e)
            return "Invalid equation"
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
44

Timothy J. Baek's avatar
Timothy J. Baek committed
45
46
47
48
`;
</script>

<CodeEditor bind:value {boilerplate} />