Docs: Scheduling recipes - Desktop and Temporal (#3452)

This commit is contained in:
Emma Youndtsmith
2025-07-16 10:57:20 -05:00
committed by GitHub
parent eda810040d
commit f8a12a6189
3 changed files with 58 additions and 16 deletions

View File

@@ -108,6 +108,8 @@ These variables control how Goose manages conversation sessions and context.
| `GOOSE_CONTEXT_STRATEGY` | Controls how Goose handles context limit exceeded situations | "summarize", "truncate", "clear", "prompt" | "prompt" (interactive), "summarize" (headless) |
| `GOOSE_MAX_TURNS` | [Maximum number of turns](/docs/guides/smart-context-management#maximum-turns) allowed without user input | Integer (e.g., 10, 50, 100) | 1000 |
| `GOOSE_CLI_THEME` | [Theme](/docs/guides/goose-cli-commands#themes) for CLI response markdown | "light", "dark", "ansi" | "dark" |
| `GOOSE_SCHEDULER_TYPE` | Controls which scheduler Goose uses for [scheduled recipes](/docs/guides/recipes/session-recipes.md#schedule-recipe) | "legacy" or "temporal" | "legacy" (Goose's built-in cron scheduler) |
| `GOOSE_TEMPORAL_BIN` | Optional custom path to your Temporal binary | /path/to/temporal-service | None |
**Examples**
@@ -129,6 +131,12 @@ export GOOSE_MAX_TURNS=100
# Set the ANSI theme for the session
export GOOSE_CLI_THEME=ansi
# Use Temporal for scheduled recipes
export GOOSE_SCHEDULER_TYPE=temporal
# Custom Temporal binary (optional)
export GOOSE_TEMPORAL_BIN=/path/to/temporal-service
```
### Model Context Limit Overrides