acp-plugin-gamesdk 0.1.21__tar.gz → 0.1.22__tar.gz
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.
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/PKG-INFO +1 -1
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/acp_plugin_gamesdk/acp_client.py +0 -4
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/acp_plugin_gamesdk/acp_plugin.py +0 -2
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/acp_plugin_gamesdk/interface.py +0 -4
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/pyproject.toml +1 -1
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/README.md +0 -0
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/acp_plugin_gamesdk/acp_token.py +0 -0
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/acp_plugin_gamesdk/acp_token_abi.py +0 -0
- {acp_plugin_gamesdk-0.1.21 → acp_plugin_gamesdk-0.1.22}/acp_plugin_gamesdk/configs.py +0 -0
@@ -85,8 +85,6 @@ class AcpClient:
|
|
85
85
|
description=agent["description"],
|
86
86
|
wallet_address=agent["walletAddress"],
|
87
87
|
offerings=offerings,
|
88
|
-
score=agent["score"],
|
89
|
-
explanation=agent["explanation"]
|
90
88
|
)
|
91
89
|
)
|
92
90
|
|
@@ -301,8 +299,6 @@ class AcpClient:
|
|
301
299
|
description=agent["description"],
|
302
300
|
wallet_address=agent["walletAddress"],
|
303
301
|
offerings=offerings,
|
304
|
-
score=0,
|
305
|
-
explanation=""
|
306
302
|
)
|
307
303
|
)
|
308
304
|
return result[0]
|
@@ -23,8 +23,6 @@ class AcpAgent:
|
|
23
23
|
description: str
|
24
24
|
wallet_address: str
|
25
25
|
offerings: Optional[List[AcpOffering]]
|
26
|
-
score: Optional[float]
|
27
|
-
explanation: Optional[str]
|
28
26
|
|
29
27
|
def __str__(self) -> str:
|
30
28
|
offer = ""
|
@@ -36,8 +34,6 @@ class AcpAgent:
|
|
36
34
|
f"😎 Agent ID={self.id}\n"
|
37
35
|
f"Name={self.name}, Description={self.description}, Wallet={self.wallet_address}\n"
|
38
36
|
f"Offerings:\n{offer}"
|
39
|
-
f"Score:\n{self.score}"
|
40
|
-
f"Explanation:\n{self.explanation}"
|
41
37
|
)
|
42
38
|
return output
|
43
39
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|