Files
dsProject/dsLightRag/Test/T3_LLM.py

7 lines
163 B
Python
Raw Normal View History

2025-08-14 15:45:08 +08:00
from Util import LlmUtil
if __name__ == '__main__':
query_text = '你是谁?'
response = LlmUtil.get_llm_response(query_text)
print(response)