Skip to content
Open
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
6 changes: 6 additions & 0 deletions runagent-dart/lib/src/client/runagent_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,12 @@ class RunAgentClient {
/// Get any extra params supplied during initialization
Map<String, dynamic>? getExtraParams() => extraParams;

/// Get the user ID used for persistent memory, if any.
String? getUserId() => userId;

/// Check if persistent memory is enabled for this client.
bool getPersistentMemory() => persistentMemory;

/// Check if using local deployment
bool isLocal() => local;

Expand Down
2 changes: 1 addition & 1 deletion runagent-dart/lib/src/utils/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ class RunAgentConstants {
static const String envTimeout = 'RUNAGENT_TIMEOUT';

/// User agent string
static String userAgent() => 'runagent-dart/0.1.0';
static String userAgent() => 'runagent-dart/0.1.49';
}

2 changes: 1 addition & 1 deletion runagent-dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: runagent
description: RunAgent SDK for Dart/Flutter - Interact with deployed AI agents via REST and WebSocket
version: 0.1.43
version: 0.1.49
homepage: https://github.com/runagent-dev/runagent-dart

environment:
Expand Down