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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: acp-plugin-gamesdk
3
- Version: 0.1.21
3
+ Version: 0.1.22
4
4
  Summary: ACP Plugin for Python SDK for GAME by Virtuals
5
5
  Author: Steven Lee Soon Fatt
6
6
  Author-email: steven@virtuals.io
@@ -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]
@@ -234,8 +234,6 @@ class AcpPlugin:
234
234
  if agent.offerings
235
235
  else []
236
236
  ),
237
- "score": agent.score,
238
- "explanation": agent.explanation
239
237
  }
240
238
  for agent in agents
241
239
  ],
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "acp-plugin-gamesdk"
3
- version = "0.1.21"
3
+ version = "0.1.22"
4
4
  description = "ACP Plugin for Python SDK for GAME by Virtuals"
5
5
  authors = ["Steven Lee Soon Fatt <steven@virtuals.io>"]
6
6
  readme = "README.md"