MCPcopy Index your code
hub / github.com/FeatureBaseDB/DoctorGPT / random_string

Function random_string

lib/util.py:15–16  ·  view source on GitHub ↗
(size=6, chars=string.ascii_letters + string.digits)

Source from the content-addressed store, hash-verified

13warnings.filterwarnings("ignore")
14
15def random_string(size=6, chars=string.ascii_letters + string.digits):
16 return ''.join(random.choice(chars) for _ in range(size))
17
18
19def embeddings(string_array):

Callers 2

doc_chat.pyFile · 0.90
group.pyFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected