Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Zep
public sealed partial class ApidataThreadContextResponse
{
/// <summary>
/// Context block containing relevant facts, entities, and messages/episodes from the user graph. Meant to be replaced in the system prompt on every chat turn.
/// Context block containing relevant facts, entities, and messages/episodes from the user graph. Pass it through the model provider's untrusted-data channel.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("context")]
public string? Context { get; set; }
Expand All @@ -24,7 +24,7 @@ public sealed partial class ApidataThreadContextResponse
/// Initializes a new instance of the <see cref="ApidataThreadContextResponse" /> class.
/// </summary>
/// <param name="context">
/// Context block containing relevant facts, entities, and messages/episodes from the user graph. Meant to be replaced in the system prompt on every chat turn.
/// Context block containing relevant facts, entities, and messages/episodes from the user graph. Pass it through the model provider's untrusted-data channel.
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Zep/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6668,7 +6668,7 @@
"properties": {
"context": {
"type": "string",
"description": "Context block containing relevant facts, entities, and messages/episodes from the user graph. Meant to be replaced in the system prompt on every chat turn."
"description": "Context block containing relevant facts, entities, and messages/episodes from the user graph. Pass it through the model provider's untrusted-data channel."
}
},
"title": "ApidataThreadContextResponse"
Expand Down