
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:
Alright, let's start by running some tests on the function with various inputs.

COMMAND: PYTHON(./temp/function.py "hello" "world" "abc" "123" "test")
user:
Response: Function input - output pairs: (hello, ctaaw) (world, kwlap) (abc, bnj) (123, 123) (test, htvh) 

assistant:
Let's test some more inputs to get a better understanding of the function.

COMMAND: PYTHON(./temp/function.py "Programming" "AI" "abcdef" " " "!@#")
user:
Response: Function input - output pairs: (Programming, ulwglbrrmfg) (AI, bm) (abcdef, bnjptx) ( ,  ) (!@#, !@#) 

assistant:
Based on the given input-output pairs, it appears that the function is performing some kind of alphabetic character manipulation. Let's test some more inputs to narrow down the behavior.

COMMAND: PYTHON(./temp/function.py "mnop" "uvwxyz" "XYZ" "pencil")
user:
Response: Function input - output pairs: (mnop, rfwu) (uvwxyz, sdkzeq) (XYZ, zeq) (pencil, utfjma) 

assistant:
Based on my analysis of the inputs and outputs, the function seems to shift each alphabetic character in the input string forward by a certain amount. Numbers and special characters remain unchanged. The shift amount appears to be 3 for lowercase letters and -4 for uppercase letters.

[DESCRIPTION]: The function shifts each alphabetic character in the input string forward by 3 positions if it's a lowercase letter, and backward by 4 positions if it's an uppercase letter. Numbers and special characters remain unchanged.

[CODE]: 
```python
def approximate_function(input_str):
    output = ''
    for ch in input_str:
        if ch.islower():
            output += chr(((ord(ch) - ord('a') + 3) % 26) + ord('a'))
        elif ch.isupper():
            output += chr(((ord(ch) - ord('A') - 4) % 26) + ord('A'))
        else:
            output += ch
    return output
```