Spaces:
Sleeping
Sleeping
File size: 1,188 Bytes
dc9e27a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import json
import requests
# Define the backend URL
url = "http://localhost:8002/solve"
headers = {"Content-Type": "application/json"}
# Function to send a query to the backend and get the response
def get_response(query):
# Prepare the input data
data = {"inputs": query}
# Send the request to the backend
response = requests.post(url, headers=headers, data=json.dumps(data), timeout=20, stream=True)
# Process the streaming response
for chunk in response.iter_lines(chunk_size=8192, decode_unicode=False, delimiter=b"\n"):
if chunk:
decoded = chunk.decode("utf-8")
if decoded == "\r":
continue
if decoded[:6] == "data: ":
decoded = decoded[6:]
elif decoded.startswith(": ping - "):
continue
response_data = json.loads(decoded)
agent_return = response_data["response"]
node_name = response_data["current_node"]
print(f"Node: {node_name}, Response: {agent_return['response']}")
# Example usage
if __name__ == "__main__":
query = "What is the weather like today in New York?"
get_response(query)
|