I'm trying to capture chatInteraction and chatFeedback from continue with below config details in config.yaml of continue plugin.
But I see no response and no logs being printed during debug in fastapi, whereas same works with my local uvicorn setup. So I'm assuming we need to send cookies as well or missing anything. Is there a way to send headers such as cookies with data block in config.yaml?
Please let me know.
data:
- name: local-data
destination: https://testserver.com/chat-feedback
schema: 0.2.0
level: all
events:
- chatInteraction
- chatFeedback
Below config works:
data:
- name: local-data
destination:http://localhost:8000/chat-feedback
schema: 0.2.0
level: all
events:
- chatInteraction
- chatFeedback