is there basten intergation langchain isnt working for me
import requests
resp = requests.post(
"
https://model-nwx4707q.api.baseten.co/production/predict",
headers={"Authorization": "Api-Key YOUR_API_KEY"},
json="MODEL_INPUT",
stream=True
)
for content in resp.iter_content():
print(content.decode("utf-8"), end="", flush=True)