geo-platform / debug_llm.py
3v324v23's picture
Update frontend, server, and add new features
f7f20f7
import sys, os
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from server.geo_services import _llm
ans = _llm("Return JSON with key 'test' and value 'hello'", {}, json_mode=True)
print("LLM RESPONSE:", repr(ans))