You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: v1.3 - OpenAI tool streaming, Responses API function calls, thinking config, CORS, and more
Add OpenAI streaming tool call support with ContentBlockStart/Delta/Stop
handling to emit ChunkToolCall events with incremental argument streaming.
Add Responses API function_call and function_call_output input items with
conversion to Anthropic ToolUse/ToolResult blocks, plus streaming events
for FunctionCallArgumentsDelta and FunctionCallArgumentsDone.
Add client-provided thinking configuration (ThinkingConfig with
budget_tokens) respected in Anthropic-to-Google conversion.
Add OpenAI response_format/JSON mode with system prompt injection,
tool_choice conversion (auto/required/none/specific function), and
image URL fallback for non-data URLs.
Extend cache key to include max_tokens, top_p, top_k, stop_sequences
for correct cache discrimination.
Add CORS preflight handler and headers on all response types.
Add 300s streaming frame timeout on all streaming loops.
Replace hardcoded user agent with dynamic CARGO_PKG_VERSION.
Replace timestamp-based request IDs with cryptographic random IDs.
constSYSTEM_INSTRUCTION:&str = "You are Antigravity, a powerful agentic AI coding assistant designed by the Google Deepmind team working on Advanced Agentic Coding.You are pair programming with a USER to solve their coding task. The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question.**Absolute paths only****Proactiveness**";
0 commit comments