|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # ConversationExtensions
-
- Namespace: LLama.Batched
-
- Extension method for [Conversation](./llama.batched.conversation.md)
-
- ```csharp
- public static class ConversationExtensions
- ```
-
- Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [ConversationExtensions](./llama.batched.conversationextensions.md)
-
- ## Methods
-
- ### **Rewind(Conversation, Int32)**
-
- Rewind a [Conversation](./llama.batched.conversation.md) back to an earlier state by removing tokens from the end
-
- ```csharp
- public static void Rewind(Conversation conversation, int tokens)
- ```
-
- #### Parameters
-
- `conversation` [Conversation](./llama.batched.conversation.md)<br>
- The conversation to rewind
-
- `tokens` [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
- The number of tokens to rewind
-
- #### Exceptions
-
- [ArgumentOutOfRangeException](https://docs.microsoft.com/en-us/dotnet/api/system.argumentoutofrangeexception)<br>
- Thrown if `tokens` parameter is larger than TokenCount
-
- ### **ShiftLeft(Conversation, Int32, Int32)**
-
- Shift all tokens over to the left, removing "count" tokens from the start and shifting everything over.
- Leaves "keep" tokens at the start completely untouched. This can be used to free up space when the context
- gets full, keeping the prompt at the start intact.
-
- ```csharp
- public static void ShiftLeft(Conversation conversation, int count, int keep)
- ```
-
- #### Parameters
-
- `conversation` [Conversation](./llama.batched.conversation.md)<br>
- The conversation to rewind
-
- `count` [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
- How much to shift tokens over by
-
- `keep` [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
- The number of tokens at the start which should not be shifted
|