signalwire-agents 0.1.31__py3-none-any.whl → 0.1.32__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- signalwire_agents/__init__.py +1 -1
- signalwire_agents/schema.json +148 -241
- {signalwire_agents-0.1.31.dist-info → signalwire_agents-0.1.32.dist-info}/METADATA +1 -1
- {signalwire_agents-0.1.31.dist-info → signalwire_agents-0.1.32.dist-info}/RECORD +8 -8
- {signalwire_agents-0.1.31.dist-info → signalwire_agents-0.1.32.dist-info}/WHEEL +0 -0
- {signalwire_agents-0.1.31.dist-info → signalwire_agents-0.1.32.dist-info}/entry_points.txt +0 -0
- {signalwire_agents-0.1.31.dist-info → signalwire_agents-0.1.32.dist-info}/licenses/LICENSE +0 -0
- {signalwire_agents-0.1.31.dist-info → signalwire_agents-0.1.32.dist-info}/top_level.txt +0 -0
signalwire_agents/__init__.py
CHANGED
@@ -18,7 +18,7 @@ A package for building AI agents using SignalWire's AI and SWML capabilities.
|
|
18
18
|
from .core.logging_config import configure_logging
|
19
19
|
configure_logging()
|
20
20
|
|
21
|
-
__version__ = "0.1.
|
21
|
+
__version__ = "0.1.32"
|
22
22
|
|
23
23
|
# Import core classes for easier access
|
24
24
|
from .core.agent_base import AgentBase
|
signalwire_agents/schema.json
CHANGED
@@ -6455,6 +6455,20 @@
|
|
6455
6455
|
"type": "boolean",
|
6456
6456
|
"description": "A boolean value, if set to `true`, the conversation history will be reset and the agent will only have the context of the original system prompt."
|
6457
6457
|
},
|
6458
|
+
"enter_fillers": {
|
6459
|
+
"type": "array",
|
6460
|
+
"items": {
|
6461
|
+
"$ref": "#/$defs/FunctionFillers"
|
6462
|
+
},
|
6463
|
+
"description": "An array of objects that define the enter fillers for the context. Enter fillers are used when entering the context."
|
6464
|
+
},
|
6465
|
+
"exit_fillers": {
|
6466
|
+
"type": "array",
|
6467
|
+
"items": {
|
6468
|
+
"$ref": "#/$defs/FunctionFillers"
|
6469
|
+
},
|
6470
|
+
"description": "An array of objects that define the exit fillers for the context. Exit fillers are used when exiting the context."
|
6471
|
+
},
|
6458
6472
|
"pom": {
|
6459
6473
|
"type": "array",
|
6460
6474
|
"items": {
|
@@ -6484,6 +6498,20 @@
|
|
6484
6498
|
"type": "boolean",
|
6485
6499
|
"description": "A boolean value, if set to `true`, the conversation history will be reset and the agent will only have the context of the original system prompt."
|
6486
6500
|
},
|
6501
|
+
"enter_fillers": {
|
6502
|
+
"type": "array",
|
6503
|
+
"items": {
|
6504
|
+
"$ref": "#/$defs/FunctionFillers"
|
6505
|
+
},
|
6506
|
+
"description": "An array of objects that define the enter fillers for the context. Enter fillers are used when entering the context."
|
6507
|
+
},
|
6508
|
+
"exit_fillers": {
|
6509
|
+
"type": "array",
|
6510
|
+
"items": {
|
6511
|
+
"$ref": "#/$defs/FunctionFillers"
|
6512
|
+
},
|
6513
|
+
"description": "An array of objects that define the exit fillers for the context. Exit fillers are used when exiting the context."
|
6514
|
+
},
|
6487
6515
|
"text": {
|
6488
6516
|
"type": "string",
|
6489
6517
|
"description": "The text to send to the agent."
|
@@ -6712,13 +6740,13 @@
|
|
6712
6740
|
"ContextSteps": {
|
6713
6741
|
"anyOf": [
|
6714
6742
|
{
|
6715
|
-
"$ref": "#/$defs/
|
6743
|
+
"$ref": "#/$defs/ContextPOMSteps"
|
6716
6744
|
},
|
6717
6745
|
{
|
6718
|
-
"$ref": "#/$defs/
|
6746
|
+
"$ref": "#/$defs/ContextTextSteps"
|
6719
6747
|
}
|
6720
6748
|
],
|
6721
|
-
"title": "
|
6749
|
+
"title": "Context step - supports either POM or text-based steps"
|
6722
6750
|
},
|
6723
6751
|
"StringProperty": {
|
6724
6752
|
"type": "object",
|
@@ -7137,25 +7165,128 @@
|
|
7137
7165
|
],
|
7138
7166
|
"title": "Action union"
|
7139
7167
|
},
|
7140
|
-
"
|
7141
|
-
"
|
7142
|
-
|
7143
|
-
|
7168
|
+
"ContextPOMSteps": {
|
7169
|
+
"type": "object",
|
7170
|
+
"properties": {
|
7171
|
+
"name": {
|
7172
|
+
"type": "string",
|
7173
|
+
"pattern": "^(?!next$).*$",
|
7174
|
+
"description": "The name of the step. The name must be unique within the context. The name is used for referencing the step in the context."
|
7144
7175
|
},
|
7145
|
-
{
|
7146
|
-
"
|
7176
|
+
"step_criteria": {
|
7177
|
+
"type": "string",
|
7178
|
+
"description": "The conditions that must be met for the conversation to proceed to the next step. \nIf a condition is not met, the conversation will not proceed to the next step.\nIt's **highly** recommended you create a custom criteria for the step to get the intended behavior. "
|
7179
|
+
},
|
7180
|
+
"functions": {
|
7181
|
+
"type": "array",
|
7182
|
+
"items": {
|
7183
|
+
"type": "string"
|
7184
|
+
},
|
7185
|
+
"description": "An array of strings, where each string is the name of a SWAIG.function that can be executed from this step."
|
7186
|
+
},
|
7187
|
+
"valid_contexts": {
|
7188
|
+
"type": "array",
|
7189
|
+
"items": {
|
7190
|
+
"type": "string"
|
7191
|
+
},
|
7192
|
+
"description": "An array of valid contexts that the conversation can transition to from this step."
|
7193
|
+
},
|
7194
|
+
"skip_user_turn": {
|
7195
|
+
"anyOf": [
|
7196
|
+
{
|
7197
|
+
"type": "boolean"
|
7198
|
+
},
|
7199
|
+
{
|
7200
|
+
"$ref": "#/$defs/SWMLVar"
|
7201
|
+
}
|
7202
|
+
],
|
7203
|
+
"description": "A boolean value, if set to `true`, will skip the user's turn to respond in the conversation and proceed to the next step."
|
7204
|
+
},
|
7205
|
+
"end": {
|
7206
|
+
"type": "boolean",
|
7207
|
+
"description": "A boolean value, if set to `true`, will end the contexts conversation and transition to a normal interaction."
|
7208
|
+
},
|
7209
|
+
"valid_steps": {
|
7210
|
+
"type": "array",
|
7211
|
+
"items": {
|
7212
|
+
"type": "string"
|
7213
|
+
},
|
7214
|
+
"description": "An array of valid steps that the conversation can proceed to from this step.\nIf the array is empty, or the `valid_steps` key is not present, the conversation will proceed to the next step in the context."
|
7215
|
+
},
|
7216
|
+
"pom": {
|
7217
|
+
"type": "array",
|
7218
|
+
"items": {
|
7219
|
+
"$ref": "#/$defs/POM"
|
7220
|
+
},
|
7221
|
+
"description": "An array of objects that define the POM for the step. POM is the Post-Prompt Object Model, which is used to define the flow of the conversation."
|
7147
7222
|
}
|
7148
|
-
|
7223
|
+
},
|
7224
|
+
"required": [
|
7225
|
+
"name",
|
7226
|
+
"pom"
|
7227
|
+
],
|
7228
|
+
"title": "Context step with POM (Post-Prompt Object Model)",
|
7229
|
+
"unevaluatedProperties": false
|
7149
7230
|
},
|
7150
|
-
"
|
7151
|
-
"
|
7152
|
-
|
7153
|
-
|
7231
|
+
"ContextTextSteps": {
|
7232
|
+
"type": "object",
|
7233
|
+
"properties": {
|
7234
|
+
"name": {
|
7235
|
+
"type": "string",
|
7236
|
+
"pattern": "^(?!next$).*$",
|
7237
|
+
"description": "The name of the step. The name must be unique within the context. The name is used for referencing the step in the context."
|
7154
7238
|
},
|
7155
|
-
{
|
7156
|
-
"
|
7239
|
+
"step_criteria": {
|
7240
|
+
"type": "string",
|
7241
|
+
"description": "The conditions that must be met for the conversation to proceed to the next step. \nIf a condition is not met, the conversation will not proceed to the next step.\nIt's **highly** recommended you create a custom criteria for the step to get the intended behavior. "
|
7242
|
+
},
|
7243
|
+
"functions": {
|
7244
|
+
"type": "array",
|
7245
|
+
"items": {
|
7246
|
+
"type": "string"
|
7247
|
+
},
|
7248
|
+
"description": "An array of strings, where each string is the name of a SWAIG.function that can be executed from this step."
|
7249
|
+
},
|
7250
|
+
"valid_contexts": {
|
7251
|
+
"type": "array",
|
7252
|
+
"items": {
|
7253
|
+
"type": "string"
|
7254
|
+
},
|
7255
|
+
"description": "An array of valid contexts that the conversation can transition to from this step."
|
7256
|
+
},
|
7257
|
+
"skip_user_turn": {
|
7258
|
+
"anyOf": [
|
7259
|
+
{
|
7260
|
+
"type": "boolean"
|
7261
|
+
},
|
7262
|
+
{
|
7263
|
+
"$ref": "#/$defs/SWMLVar"
|
7264
|
+
}
|
7265
|
+
],
|
7266
|
+
"description": "A boolean value, if set to `true`, will skip the user's turn to respond in the conversation and proceed to the next step."
|
7267
|
+
},
|
7268
|
+
"end": {
|
7269
|
+
"type": "boolean",
|
7270
|
+
"description": "A boolean value, if set to `true`, will end the contexts conversation and transition to a normal interaction."
|
7271
|
+
},
|
7272
|
+
"valid_steps": {
|
7273
|
+
"type": "array",
|
7274
|
+
"items": {
|
7275
|
+
"type": "string"
|
7276
|
+
},
|
7277
|
+
"description": "An array of valid steps that the conversation can proceed to from this step.\nIf the array is empty, or the `valid_steps` key is not present, the conversation will proceed to the next step in the context."
|
7278
|
+
},
|
7279
|
+
"text": {
|
7280
|
+
"type": "string",
|
7281
|
+
"description": "The prompt or instructions given to the AI at this step."
|
7157
7282
|
}
|
7158
|
-
|
7283
|
+
},
|
7284
|
+
"required": [
|
7285
|
+
"name",
|
7286
|
+
"text"
|
7287
|
+
],
|
7288
|
+
"title": "Context step with text prompt",
|
7289
|
+
"unevaluatedProperties": false
|
7159
7290
|
},
|
7160
7291
|
"StringFormat": {
|
7161
7292
|
"type": "string",
|
@@ -7469,230 +7600,6 @@
|
|
7469
7600
|
],
|
7470
7601
|
"title": "UserInputAction object",
|
7471
7602
|
"unevaluatedProperties": false
|
7472
|
-
},
|
7473
|
-
"POMEndStep": {
|
7474
|
-
"type": "object",
|
7475
|
-
"properties": {
|
7476
|
-
"name": {
|
7477
|
-
"type": "string",
|
7478
|
-
"pattern": "^(?!next$).*$",
|
7479
|
-
"description": "The name of the step. The name must be unique within the context. The name is used for referencing the step in the context."
|
7480
|
-
},
|
7481
|
-
"step_criteria": {
|
7482
|
-
"type": "string",
|
7483
|
-
"description": "The conditions that must be met for the conversation to proceed to the next step. \nIf a condition is not met, the conversation will not proceed to the next step.\nIt's **highly** recommended you create a custom criteria for the step to get the intended behavior. "
|
7484
|
-
},
|
7485
|
-
"functions": {
|
7486
|
-
"type": "array",
|
7487
|
-
"items": {
|
7488
|
-
"type": "string"
|
7489
|
-
},
|
7490
|
-
"description": "An array of strings, where each string is the name of a SWAIG.function that can be executed from this step."
|
7491
|
-
},
|
7492
|
-
"valid_contexts": {
|
7493
|
-
"type": "array",
|
7494
|
-
"items": {
|
7495
|
-
"type": "string"
|
7496
|
-
},
|
7497
|
-
"description": "An array of valid contexts that the conversation can transition to from this step."
|
7498
|
-
},
|
7499
|
-
"skip_user_turn": {
|
7500
|
-
"anyOf": [
|
7501
|
-
{
|
7502
|
-
"type": "boolean"
|
7503
|
-
},
|
7504
|
-
{
|
7505
|
-
"$ref": "#/$defs/SWMLVar"
|
7506
|
-
}
|
7507
|
-
],
|
7508
|
-
"description": "A boolean value, if set to `true`, will skip the user's turn to respond in the conversation and proceed to the next step."
|
7509
|
-
},
|
7510
|
-
"pom": {
|
7511
|
-
"type": "array",
|
7512
|
-
"items": {
|
7513
|
-
"$ref": "#/$defs/POM"
|
7514
|
-
},
|
7515
|
-
"description": "An array of objects that define the POM for the step. POM is the Post-Prompt Object Model, which is used to define the flow of the conversation."
|
7516
|
-
},
|
7517
|
-
"end": {
|
7518
|
-
"type": "boolean",
|
7519
|
-
"description": "A boolean value, if set to `true`, will end the contexts conversation and transition to a normal interaction."
|
7520
|
-
}
|
7521
|
-
},
|
7522
|
-
"required": [
|
7523
|
-
"name",
|
7524
|
-
"pom"
|
7525
|
-
],
|
7526
|
-
"title": "ContextStepsEnd object",
|
7527
|
-
"unevaluatedProperties": false
|
7528
|
-
},
|
7529
|
-
"POMValidSteps": {
|
7530
|
-
"type": "object",
|
7531
|
-
"properties": {
|
7532
|
-
"name": {
|
7533
|
-
"type": "string",
|
7534
|
-
"pattern": "^(?!next$).*$",
|
7535
|
-
"description": "The name of the step. The name must be unique within the context. The name is used for referencing the step in the context."
|
7536
|
-
},
|
7537
|
-
"step_criteria": {
|
7538
|
-
"type": "string",
|
7539
|
-
"description": "The conditions that must be met for the conversation to proceed to the next step. \nIf a condition is not met, the conversation will not proceed to the next step.\nIt's **highly** recommended you create a custom criteria for the step to get the intended behavior. "
|
7540
|
-
},
|
7541
|
-
"functions": {
|
7542
|
-
"type": "array",
|
7543
|
-
"items": {
|
7544
|
-
"type": "string"
|
7545
|
-
},
|
7546
|
-
"description": "An array of strings, where each string is the name of a SWAIG.function that can be executed from this step."
|
7547
|
-
},
|
7548
|
-
"valid_contexts": {
|
7549
|
-
"type": "array",
|
7550
|
-
"items": {
|
7551
|
-
"type": "string"
|
7552
|
-
},
|
7553
|
-
"description": "An array of valid contexts that the conversation can transition to from this step."
|
7554
|
-
},
|
7555
|
-
"skip_user_turn": {
|
7556
|
-
"anyOf": [
|
7557
|
-
{
|
7558
|
-
"type": "boolean"
|
7559
|
-
},
|
7560
|
-
{
|
7561
|
-
"$ref": "#/$defs/SWMLVar"
|
7562
|
-
}
|
7563
|
-
],
|
7564
|
-
"description": "A boolean value, if set to `true`, will skip the user's turn to respond in the conversation and proceed to the next step."
|
7565
|
-
},
|
7566
|
-
"pom": {
|
7567
|
-
"type": "array",
|
7568
|
-
"items": {
|
7569
|
-
"$ref": "#/$defs/POM"
|
7570
|
-
},
|
7571
|
-
"description": "An array of objects that define the POM for the step. POM is the Post-Prompt Object Model, which is used to define the flow of the conversation."
|
7572
|
-
},
|
7573
|
-
"valid_steps": {
|
7574
|
-
"type": "array",
|
7575
|
-
"items": {
|
7576
|
-
"type": "string"
|
7577
|
-
},
|
7578
|
-
"description": "An array of valid steps that the conversation can proceed to from this step.\nIf the array is empty, or the `valid_steps` key is not present, the conversation will proceed to the next step in the context."
|
7579
|
-
}
|
7580
|
-
},
|
7581
|
-
"required": [
|
7582
|
-
"name",
|
7583
|
-
"pom"
|
7584
|
-
],
|
7585
|
-
"title": "ContextStepsValidSteps object",
|
7586
|
-
"unevaluatedProperties": false
|
7587
|
-
},
|
7588
|
-
"TextEndStep": {
|
7589
|
-
"type": "object",
|
7590
|
-
"properties": {
|
7591
|
-
"name": {
|
7592
|
-
"type": "string",
|
7593
|
-
"pattern": "^(?!next$).*$",
|
7594
|
-
"description": "The name of the step. The name must be unique within the context. The name is used for referencing the step in the context."
|
7595
|
-
},
|
7596
|
-
"step_criteria": {
|
7597
|
-
"type": "string",
|
7598
|
-
"description": "The conditions that must be met for the conversation to proceed to the next step. \nIf a condition is not met, the conversation will not proceed to the next step.\nIt's **highly** recommended you create a custom criteria for the step to get the intended behavior. "
|
7599
|
-
},
|
7600
|
-
"functions": {
|
7601
|
-
"type": "array",
|
7602
|
-
"items": {
|
7603
|
-
"type": "string"
|
7604
|
-
},
|
7605
|
-
"description": "An array of strings, where each string is the name of a SWAIG.function that can be executed from this step."
|
7606
|
-
},
|
7607
|
-
"valid_contexts": {
|
7608
|
-
"type": "array",
|
7609
|
-
"items": {
|
7610
|
-
"type": "string"
|
7611
|
-
},
|
7612
|
-
"description": "An array of valid contexts that the conversation can transition to from this step."
|
7613
|
-
},
|
7614
|
-
"skip_user_turn": {
|
7615
|
-
"anyOf": [
|
7616
|
-
{
|
7617
|
-
"type": "boolean"
|
7618
|
-
},
|
7619
|
-
{
|
7620
|
-
"$ref": "#/$defs/SWMLVar"
|
7621
|
-
}
|
7622
|
-
],
|
7623
|
-
"description": "A boolean value, if set to `true`, will skip the user's turn to respond in the conversation and proceed to the next step."
|
7624
|
-
},
|
7625
|
-
"text": {
|
7626
|
-
"type": "string",
|
7627
|
-
"description": "The prompt or instructions given to the AI at this step."
|
7628
|
-
},
|
7629
|
-
"end": {
|
7630
|
-
"type": "boolean",
|
7631
|
-
"description": "A boolean value, if set to `true`, will end the contexts conversation and transition to a normal interaction."
|
7632
|
-
}
|
7633
|
-
},
|
7634
|
-
"required": [
|
7635
|
-
"name",
|
7636
|
-
"text"
|
7637
|
-
],
|
7638
|
-
"title": "ContextStepsBase object",
|
7639
|
-
"unevaluatedProperties": false
|
7640
|
-
},
|
7641
|
-
"TextValidSteps": {
|
7642
|
-
"type": "object",
|
7643
|
-
"properties": {
|
7644
|
-
"name": {
|
7645
|
-
"type": "string",
|
7646
|
-
"pattern": "^(?!next$).*$",
|
7647
|
-
"description": "The name of the step. The name must be unique within the context. The name is used for referencing the step in the context."
|
7648
|
-
},
|
7649
|
-
"step_criteria": {
|
7650
|
-
"type": "string",
|
7651
|
-
"description": "The conditions that must be met for the conversation to proceed to the next step. \nIf a condition is not met, the conversation will not proceed to the next step.\nIt's **highly** recommended you create a custom criteria for the step to get the intended behavior. "
|
7652
|
-
},
|
7653
|
-
"functions": {
|
7654
|
-
"type": "array",
|
7655
|
-
"items": {
|
7656
|
-
"type": "string"
|
7657
|
-
},
|
7658
|
-
"description": "An array of strings, where each string is the name of a SWAIG.function that can be executed from this step."
|
7659
|
-
},
|
7660
|
-
"valid_contexts": {
|
7661
|
-
"type": "array",
|
7662
|
-
"items": {
|
7663
|
-
"type": "string"
|
7664
|
-
},
|
7665
|
-
"description": "An array of valid contexts that the conversation can transition to from this step."
|
7666
|
-
},
|
7667
|
-
"skip_user_turn": {
|
7668
|
-
"anyOf": [
|
7669
|
-
{
|
7670
|
-
"type": "boolean"
|
7671
|
-
},
|
7672
|
-
{
|
7673
|
-
"$ref": "#/$defs/SWMLVar"
|
7674
|
-
}
|
7675
|
-
],
|
7676
|
-
"description": "A boolean value, if set to `true`, will skip the user's turn to respond in the conversation and proceed to the next step."
|
7677
|
-
},
|
7678
|
-
"text": {
|
7679
|
-
"type": "string",
|
7680
|
-
"description": "The prompt or instructions given to the AI at this step."
|
7681
|
-
},
|
7682
|
-
"valid_steps": {
|
7683
|
-
"type": "array",
|
7684
|
-
"items": {
|
7685
|
-
"type": "string"
|
7686
|
-
},
|
7687
|
-
"description": "An array of valid steps that the conversation can proceed to from this step.\nIf the array is empty, or the `valid_steps` key is not present, the conversation will proceed to the next step in the context."
|
7688
|
-
}
|
7689
|
-
},
|
7690
|
-
"required": [
|
7691
|
-
"name",
|
7692
|
-
"text"
|
7693
|
-
],
|
7694
|
-
"title": "ContextStepsBase object",
|
7695
|
-
"unevaluatedProperties": false
|
7696
7603
|
}
|
7697
7604
|
},
|
7698
7605
|
"unevaluatedProperties": false
|
@@ -1,6 +1,6 @@
|
|
1
|
-
signalwire_agents/__init__.py,sha256=
|
1
|
+
signalwire_agents/__init__.py,sha256=LAnGf-IAb3LdYxNKag2n8bhaqiDytjiKShisdVKXZ8U,2608
|
2
2
|
signalwire_agents/agent_server.py,sha256=x9HyWia8D3r6KMqY-Q4DtNVivfJWLTx8B-KzUI8okuA,26880
|
3
|
-
signalwire_agents/schema.json,sha256=
|
3
|
+
signalwire_agents/schema.json,sha256=6-7ccbt39iM1CO36dOfvupRPfd0gnQ0XoAdyo-EFyjo,238042
|
4
4
|
signalwire_agents/cli/__init__.py,sha256=XbxAQFaCIdGXIXJiriVBWoFPOJsC401u21588nO4TG8,388
|
5
5
|
signalwire_agents/cli/build_search.py,sha256=KLQJBqVSADFyGcKAi0KLwU_UoUd5rtRoKAdfcH91u70,28652
|
6
6
|
signalwire_agents/cli/config.py,sha256=2i4e0BArdKsaXxjeueYYRNke7GWicHPYC2wuitVrP7A,2541
|
@@ -121,9 +121,9 @@ signalwire_agents/utils/pom_utils.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_Pu
|
|
121
121
|
signalwire_agents/utils/schema_utils.py,sha256=i4okv_O9bUApwT_jJf4Yoij3bLCrGrW3DC-vzSy2RuY,16392
|
122
122
|
signalwire_agents/utils/token_generators.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
|
123
123
|
signalwire_agents/utils/validators.py,sha256=4Mr7baQ_xR_hfJ72YxQRAT_GFa663YjFX_PumJ35Xds,191
|
124
|
-
signalwire_agents-0.1.
|
125
|
-
signalwire_agents-0.1.
|
126
|
-
signalwire_agents-0.1.
|
127
|
-
signalwire_agents-0.1.
|
128
|
-
signalwire_agents-0.1.
|
129
|
-
signalwire_agents-0.1.
|
124
|
+
signalwire_agents-0.1.32.dist-info/licenses/LICENSE,sha256=NYvAsB-rTcSvG9cqHt9EUHAWLiA9YzM4Qfz-mPdvDR0,1067
|
125
|
+
signalwire_agents-0.1.32.dist-info/METADATA,sha256=weKRqyFq6N4mYkFJOr0v5TgGEN-nBjqsxA4cVmnmMn0,38391
|
126
|
+
signalwire_agents-0.1.32.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
127
|
+
signalwire_agents-0.1.32.dist-info/entry_points.txt,sha256=sfdeRaTSs9J56pqFdcZGRTxQcTuecb8IMx8gqleJ6s0,136
|
128
|
+
signalwire_agents-0.1.32.dist-info/top_level.txt,sha256=kDGS6ZYv84K9P5Kyg9_S8P_pbUXoHkso0On_DB5bbWc,18
|
129
|
+
signalwire_agents-0.1.32.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|