7 lines
163 B
Python
7 lines
163 B
Python
|
from Util import LlmUtil
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
query_text = '你是谁?'
|
||
|
response = LlmUtil.get_llm_response(query_text)
|
||
|
print(response)
|