developer-asisstant-tool-call / test_stackoverflow_tool.py
Seda Nur Yazıcı
Deploy application to Hugging Face Spaces
7edb85f
Raw
History Blame Contribute Delete
407 Bytes
import json
from tools.stackoverflow_tool import (
search_stackoverflow,
)
def main() -> None:
result = search_stackoverflow(
query=(
"Python TypeError object is not subscriptable"
),
limit=5,
)
print(
json.dumps(
result,
indent=2,
ensure_ascii=False,
)
)
if __name__ == "__main__":
main()