텍스트 생성, 다중 모드 입력 및 구조화된 출력을 위한 통합 OpenAI 호환 응답 엔드포인트입니다.
用于创建统一的模型响应对象,适合文本生成、结构化输出、工具调用以及多模态输入。 这个接口比Documentation Index
Fetch the complete documentation index at: https://docs.apigo.ai/llms.txt
Use this file to discover all available pages before exploring further.
chat.completions 更适合做新接入,因为它把文本、图像、工具和推理控制放进了同一套请求模型。不同模型支持的字段会有差异,尤其是推理能力、工具能力和多模态输入范围。
Authorization: Bearer {API_KEY}previous_response_id 串联上下文reasoning、max_output_tokens 和 tools 这类控制项收敛到服务端统一下发input 是最常见的输入字段,可以承载文本或多模态内容块model 用于指定本次调用的模型 IDprevious_response_id 复用上下文,而不是每次重传全部历史tools,并处理模型返回的工具调用结果output_text 读取output[] 中的各类内容块usage 字段中读取Bearer authentication header of the form Bearer <token>, where <token> is your auth token.