/
githubmirror
/
OpenAgents
Обзор
Документация
Войти
/
githubmirror
/
OpenAgents
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
real_agents/plugins_agent/plugins/wolfram/paths/query.py
16 строк
427 B
Tianbao Xie
Update plugins (#135)
28 май 2024, 08:59
Не верифицирован
28 май 2024, 08:59
fab2c1b
Код
Авторство
О чём код?
import requests # Hard for LLm to use, deprecated def call_api(input_json, api_key): input_json["appid"] = api_key response = requests.get("https://www.wolframalpha.com/api/v1/query.jsp", params=input_json) if response.status_code == 200: return response.json() else: return {"status_code": response.status_code, "text": response.text} # query = "What is the population of New York City?"