mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-17 22:24:21 +01:00
Docs: Scheduling recipes - Desktop and Temporal (#3452)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user