hibobmaster
600c5e161a
Bump requests from 2.28.2 to 2.31.0 Bumps [requests](https://github.com/psf/requests) from 2.28.2 to 2.31.0. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.28.2...v2.31.0) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
603 B
Python
19 lines
603 B
Python
import requests
|
|
|
|
def flowise_query(api_url: str, prompt: str, headers: dict = None) -> str:
|
|
"""
|
|
Sends a query to the Flowise API and returns the response.
|
|
|
|
Args:
|
|
api_url (str): The URL of the Flowise API.
|
|
prompt (str): The question to ask the API.
|
|
|
|
Returns:
|
|
str: The response from the API.
|
|
"""
|
|
if headers:
|
|
response = requests.post(api_url, json={"question": prompt},
|
|
headers=headers, timeout=120)
|
|
else:
|
|
response = requests.post(api_url, json={"question": prompt}, timeout=120)
|
|
return response.text
|