5 lines
156 B
Python
5 lines
156 B
Python
|
|
from open_chatcaht.chatchat_api import ChatChat
|
||
|
|
|
||
|
|
chatchat = ChatChat()
|
||
|
|
print(chatchat.tool.list())
|
||
|
|
print(chatchat.tool.call('calculate', {"text": "3+5/2"}))
|