(ctx context.Context, conversationID string)
| 57 | } |
| 58 | |
| 59 | func SetConversationID(ctx context.Context, conversationID string) context.Context { |
| 60 | return Set(ctx, conversationIDKey, conversationID) |
| 61 | } |
| 62 | |
| 63 | func GetConversationID(ctx context.Context) (string, error) { |
| 64 | v, ok := Get[string](ctx, conversationIDKey) |