Spaces:
Running
Running
wording
Browse files
README.md
CHANGED
@@ -183,7 +183,7 @@ message_history = [
|
|
183 |
```
|
184 |
This would then build up the message history, alternating between the assistant (who takes the *action*) and the user (who provides the *observation*).
|
185 |
|
186 |
-
> **Context-Window Management:** When making calls to the model, all the
|
187 |
|
188 |
The chat template will format this automatically. You should also pass the `Tools` that the model has access to, these will define the action space available to the model. You can do this with `transformers`:
|
189 |
|
|
|
183 |
```
|
184 |
This would then build up the message history, alternating between the assistant (who takes the *action*) and the user (who provides the *observation*).
|
185 |
|
186 |
+
> **Context-Window Management:** When making calls to the model, all the observations other than the current one are discarded in order to reduce the large number of image tokens required. Since the model responses include reflection on the observations and are all included in the message history, the model is still aware of the entire history when planning new actions.
|
187 |
|
188 |
The chat template will format this automatically. You should also pass the `Tools` that the model has access to, these will define the action space available to the model. You can do this with `transformers`:
|
189 |
|