Skip to content

Commit

Permalink
Merge branch 'main' of ssh://github.com/fetchai/uAgents into feat/pin…
Browse files Browse the repository at this point in the history
…g-response
  • Loading branch information
jrriehl committed Oct 23, 2023
2 parents 4ab2b0f + b2418d1 commit 44650c8
Show file tree
Hide file tree
Showing 7 changed files with 194 additions and 192 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Please see the [official documentation](https://docs.fetch.ai/) for full setup i

## 🌱 Examples

The [`examples`](https://github.com/fetchai/uAgents/tree/main/examples) folder contains several examples of how to create and run various types of agents.
The [`examples`](https://github.com/fetchai/uAgents/tree/main/python/examples) folder contains several examples of how to create and run various types of agents.

## Python Library

Expand Down
374 changes: 188 additions & 186 deletions integrations/fetch-ai-engine/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion integrations/fetch-ai-engine/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "uagents-ai-engine"
version = "0.1.1"
version = "0.1.2"
description = "Integrating AI-Engine with UAgents"
authors = ["Fetch.AI Limited"]
license = "Apache 2.0"
Expand Down
2 changes: 1 addition & 1 deletion integrations/fetch-ai-engine/src/ai_engine/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from ai_engine.types import KeyValue, UAgentResponseType, UAgentResponse
from ai_engine.types import KeyValue, UAgentResponseType, UAgentResponse, BookingRequest
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "uagents"
version = "0.6.2"
version = "0.7.0"
description = "Lightweight framework for rapid agent-based development"
authors = ["Ed FitzGerald <[email protected]>", "James Riehl <[email protected]>", "Alejandro Morales <[email protected]>"]
license = "Apache 2.0"
Expand Down
2 changes: 1 addition & 1 deletion python/scripts/do_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def make_release(current_version: Version) -> None:
"""Make release on Github."""
subprocess.check_call(
f"""gh release create v{current_version} --title "v{current_version}"
--generate-notes --latest --verify-tag """,
--generate-notes --latest""",
shell=True,
)

Expand Down
2 changes: 1 addition & 1 deletion python/src/uagents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def identifier(self) -> str:
str: The agent's identifier.
"""
prefix = TESTNET_PREFIX if self._test else MAINNET_PREFIX
return prefix + self._identity.address
return prefix + "://" + self._identity.address

@property
def wallet(self) -> LocalWallet:
Expand Down

0 comments on commit 44650c8

Please sign in to comment.