/
githubmirror
/
OpenAgents
Обзор
Документация
Войти
/
githubmirror
/
OpenAgents
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
real_agents/plugins_agent/plugins/wolfram/paths/cloud_plugin.py
12 строк
398 B
Timothyxxx
Update: add Plugins Agent code
13 окт 2023, 17:37
13 окт 2023, 17:37
80366ca
Код
Авторство
О чём код?
"""Cloud plugin for Wolfram Alpha API""" import requests def call_api(input_json, api_key): input_json["appid"] = api_key response = requests.get("https://www.wolframalpha.com/api/v1/cloud-plugin", params=input_json) if response.status_code == 200: return response.content.decode("utf-8") else: return {"status_code": response.status_code, "text": response.text}