MCPcopy Create free account
hub / github.com/OpenCodeInterpreter/OpenCodeInterpreter / visit_Call

Method visit_Call

demo/chatbot.py:115–118  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

113 self.found_input = False
114
115 def visit_Call(self, node):
116 if isinstance(node.func, ast.Name) and node.func.id == 'input':
117 self.found_input = True
118 self.generic_visit(node)
119
120def has_input_function_calls(code):
121 try:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected