CoolFace
Apppublic

MKooi/Coding_Agents

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
test_json.py8 linesDownload Raw Back to root
1from llm_clients import call_llm_json2 3system = "You are strict."4user = "Return JSON with key 'answer' and value 42."5 6result = call_llm_json(system, user)7 8print(result)