
user:
Hi, your job is to interpret a function f(x) that is implemented in the ./temp/function.py script. f(x) takes string inputs.
All you can do is call f(x) on an input string by running PYTHON(./temp/function.py string). 
Try to describe the function implemented by f(x) by running experiments on it. 
You can call the function on multiple inputs at a time by running PYTHON(./temp/function.py string1 string2 string3 ...). 
We encourage testing a large range of inputs before writing a description.
The goal is to find a good simple description of f(x) that explains most of the function behavior. f(x) may combine multiple different operations.
Your description of the function should be in the following form.
[DESCRIPTION]: Describe what the function is doing in language. 
[CODE]: Write python code that approximates the behavior of the function. 
assistant:
COMMAND: PYTHON(./temp/function.py "a" "test" "hello")
user:
Response: Function input - output pairs: (a, g) (test, zonz) (hello, doeek) 

assistant:
COMMAND: PYTHON(./temp/function.py "apple" "banana" "cherry")
user:
Response: Function input - output pairs: (apple, gyyeo) (banana, lgsgsg) (cherry, wdoaac) 

assistant:
COMMAND: PYTHON(./temp/function.py "Lorem" "ipsum" "dolor")
user:
Response: Function input - output pairs: (Lorem, ekaom) (ipsum, hyntm) (dolor, xkeka) 

assistant:
COMMAND: PYTHON(./temp/function.py "A" "B" "C" "1" "2" "3")
user:
Response: Function input - output pairs: (A, g) (B, l) (C, w) (1, 1) (2, 2) (3, 3) 

assistant:
[DESCRIPTION]: The function takes the input string and increments each character by 6 positions in the alphabet. If the character is not a letter, it remains unchanged. If the alphabet incrementation goes beyond 'z', it loops back to 'a'.

[CODE]: 
def approx_function(input_string):
    output_string = ""
    for char in input_string:
        if char.isalpha():
            increment = 6
            if char.isupper():
                output_string += chr(((ord(char) - ord('A') + increment) % 26) + ord('A'))
            else:
                output_string += chr(((ord(char) - ord('a') + increment) % 26) + ord('a'))
        else:
            output_string += char
    return output_string