MCPcopy Create free account
hub / github.com/FeatureBaseDB/DoctorGPT / random_string

Function random_string

lib/ai.py:76–77  ·  view source on GitHub ↗
(size=6, chars=string.ascii_letters + string.digits)

Source from the content-addressed store, hash-verified

74
75# random strings
76def random_string(size=6, chars=string.ascii_letters + string.digits):
77 return ''.join(random.choice(chars) for _ in range(size))
78
79
80# gptchat

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected