MCPcopy
hub / github.com/microsoft/Magma / is_english_simple

Function is_english_simple

agents/ui_agent/util/process_utils.py:4–10  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

2
3# is instruction English
4def is_english_simple(text):
5 try:
6 text.encode(encoding='utf-8').decode('ascii')
7 except UnicodeDecodeError:
8 return False
9 else:
10 return True
11
12# bbox -> point (str)
13def bbox_2_point(bbox, dig=2):

Callers

nothing calls this directly

Calls 1

decodeMethod · 0.80

Tested by

no test coverage detected