Synced from monorepo
Synced from monorepo Changes: - Workspace server: report `/ready` as failed with dwell on hub connect failure - Refresh OIDC token for the Grok agent in the shell - ACP terminal output recorder - Cross-platform provider auth commands in the shell - Default `/resume` to Grok sessions with a hint for hidden external sessions - Resume sessions by title with `--resume` - Limit app-builder archive size - Data-driven tag labels for slash commands - Doctor fixes for tmux - Custom provider gateways and subprocess environment policy in the shell - `/tutorial` — opt-in onboarding tour of Grok Build - Soft and required CLI version checks in the shell - Privacy banner env overrides survive live settings updates - Add remote flag to override the image-edit model - Return profile fields from auth info even when the access token is expired - Add edit control on queued prompt rows - Keep fail-closed policy when clearing orphans with no team - Setting to disable the Ctrl+Space/F8 voice shortcut - Pass `--raw` to pw-record so Linux dictation works on older PipeWire - Validate git URLs when adding marketplace entries - Stop shipping stale tool-doc parameter and tool names - Re-point dashboard attach after `/fork` only when the parent was attached - Surface Grok Computer media-generation results as file-path chunks - Clear web background-task tray on kill and keep the task description - Show privacy upsell banner in agent view until acted on - Add tools-server client callback surface - Protect persistent global hook sources Source-Revision: 95d84f443eddcbed6cbfd6eed22e2eafe6b3939d
This commit is contained in:
parent
a5727c5960
commit
69f0ba880a
286 changed files with 22939 additions and 9624 deletions
|
|
@ -273,6 +273,8 @@ mod tests {
|
|||
top_p: None,
|
||||
api_backend: Default::default(),
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: std::num::NonZeroU64::new(128_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
|
|||
|
|
@ -25,6 +25,8 @@ fn test_config_with_window(context_window: u64) -> SamplingConfig {
|
|||
top_p: None,
|
||||
api_backend: Default::default(),
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: NonZeroU64::new(context_window)
|
||||
.expect("test context_window must be non-zero"),
|
||||
reasoning_effort: None,
|
||||
|
|
@ -1170,6 +1172,8 @@ async fn update_sampling_config_is_queryable() {
|
|||
top_p: None,
|
||||
api_backend: Default::default(),
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: NonZeroU64::new(200_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
@ -1555,6 +1559,8 @@ async fn build_request_uses_sampling_config() {
|
|||
top_p: Some(0.9),
|
||||
api_backend: Default::default(),
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: NonZeroU64::new(128_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
@ -3696,6 +3702,8 @@ async fn sampling_config_survives_compaction_replacement() {
|
|||
top_p: Some(0.95),
|
||||
api_backend: ApiBackend::Responses,
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: NonZeroU64::new(500_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
@ -3779,6 +3787,8 @@ async fn model_metadata_lost_after_compaction_then_recovered_on_next_turn() {
|
|||
top_p: Some(0.95),
|
||||
api_backend: Default::default(),
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: NonZeroU64::new(500_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
@ -3867,6 +3877,8 @@ async fn context_window_downgrade_triggers_auto_compact() {
|
|||
top_p: Some(0.95),
|
||||
api_backend: ApiBackend::Responses,
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: NonZeroU64::new(500_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
|
|||
|
|
@ -409,6 +409,8 @@ mod tests {
|
|||
top_p: None,
|
||||
api_backend: Default::default(),
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: std::num::NonZeroU64::new(128_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
|
|||
|
|
@ -181,6 +181,8 @@ mod tests {
|
|||
top_p: None,
|
||||
api_backend: Default::default(),
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: NonZeroU64::new(128_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
@ -224,6 +226,8 @@ mod tests {
|
|||
top_p: None,
|
||||
api_backend: Default::default(),
|
||||
extra_headers: Default::default(),
|
||||
query_params: Default::default(),
|
||||
env_http_headers: Default::default(),
|
||||
context_window: NonZeroU64::new(128_000).unwrap(),
|
||||
reasoning_effort: None,
|
||||
stream_tool_calls: None,
|
||||
|
|
|
|||
Loading…
Reference in a new issue