MCPcopy Index your code
hub / github.com/openai/openai-agents-python / simple_function

Function simple_function

tests/test_function_schema.py:47–56  ·  view source on GitHub ↗

Args: a: The first argument b: The second argument Returns: The sum of a and b

(a: int, b: int = 5)

Source from the content-addressed store, hash-verified

45
46
47def simple_function(a: int, b: int = 5):
48 """
49 Args:
50 a: The first argument
51 b: The second argument
52
53 Returns:
54 The sum of a and b
55 """
56 return a + b
57
58
59def test_simple_function():

Callers 1

test_simple_functionFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected