@inference-gateway/cli 0.166.0 → 0.167.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1048,7 +1048,7 @@ export INFER_CHANNELS_TELEGRAM_ALLOWED_USERS="123456789"
|
|
|
1048
1048
|
**4. Start the channel listener:**
|
|
1049
1049
|
|
|
1050
1050
|
```bash
|
|
1051
|
-
infer
|
|
1051
|
+
infer daemon
|
|
1052
1052
|
```
|
|
1053
1053
|
|
|
1054
1054
|
**5. Send a message** to your bot in Telegram - the agent will respond.
|
|
@@ -1094,9 +1094,10 @@ For detailed documentation including custom channel development, see [Channels D
|
|
|
1094
1094
|
|
|
1095
1095
|
### Scheduled Tasks
|
|
1096
1096
|
|
|
1097
|
-
When the
|
|
1098
|
-
|
|
1099
|
-
|
|
1097
|
+
When the daemon is running, the agent can schedule prompts on a cron
|
|
1098
|
+
schedule. Every fire runs an agent and records the run to storage; jobs
|
|
1099
|
+
created from a channel chat (e.g. Telegram) additionally deliver the
|
|
1100
|
+
response back through that channel.
|
|
1100
1101
|
|
|
1101
1102
|
> *"Send me an inspiring quote every day at 8 AM"* - recurring
|
|
1102
1103
|
> *"Remind me at 6pm today to call mum"* - one-off (deletes itself after firing)
|
|
@@ -1128,7 +1129,7 @@ walkthroughs, see [Scheduling Documentation](docs/scheduling.md).
|
|
|
1128
1129
|
Heartbeat wakes the agent on a fixed interval - without any user input -
|
|
1129
1130
|
so it can check for pending todos, background tasks, or anything else
|
|
1130
1131
|
your system prompt tells it to monitor. It runs alongside the scheduler
|
|
1131
|
-
inside the `infer
|
|
1132
|
+
inside the `infer daemon` process and is **disabled by default**.
|
|
1132
1133
|
|
|
1133
1134
|
Unlike the [Schedule](docs/scheduling.md) tool (which the LLM uses to
|
|
1134
1135
|
create user-driven cron jobs that deliver to a channel), heartbeat is a
|
|
@@ -1154,7 +1155,7 @@ wake-up behaviour separately from chat-mode behaviour.
|
|
|
1154
1155
|
Then start the daemon:
|
|
1155
1156
|
|
|
1156
1157
|
```bash
|
|
1157
|
-
infer
|
|
1158
|
+
infer daemon
|
|
1158
1159
|
```
|
|
1159
1160
|
|
|
1160
1161
|
Heartbeat alone is a valid run mode - you don't need any channel
|