Spaces:
Running
Running
File size: 227 Bytes
f7f20f7 | 1 2 3 4 5 6 7 | 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))
|