Fabric
Fabric copied to clipboard
[Question]: How to set the interface protocol of Fabric to wire_api = "chat"?
What is your question?
How to set the interface protocol of Fabric to wire_api = "chat"?
@SeasonPilot Can you clarify? What exactly are you trying to do?
@SeasonPilot Can you clarify? What exactly are you trying to do?
The API interface I use does not support the wire_api = "responses" protocol.
POST "https://myxxx.com/v1/responses": 404 Not Found "Not Found"
After checking the code, the configuration should be set like this:
# ~/.config/fabric/config.yaml
model: "gpt-5.2"
vendor: "OpenAI"
disableResponsesAPI: true # Force use of the Chat Completions API
Okay, so you seem to have answered your question. Is this complete?
Thank you!