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
16 changes: 9 additions & 7 deletions 6-deployed-agents/chained/asset-signal-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tool.poetry]
[project]
name = "asset-signal-agent"
version = "0.1.0"
description = "This agent chains multiple financial agents together to create a signal for an asset."
authors = ["Florian Wilde <florian.wilde@fetch.ai>"]
authors = [
{ name = "Florian Wilde", email = "florian.wilde@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
16 changes: 9 additions & 7 deletions 6-deployed-agents/chained/blog-creator-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tool.poetry]
[project]
name = "blog-creator-agent"
version = "0.1.0"
description = "This agent combines a topic extraction agent with a blog generator, transforming Reddit posts into a blog based on a chosen topic."
authors = ["Alejandro <alejandro.madrigal@fetch.ai>"]
authors = [
{ name = "Alejandro", email = "alejandro.madrigal@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
18 changes: 10 additions & 8 deletions 6-deployed-agents/chained/topic-extractor-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tool.poetry]
[project]
name = "topic-extractor-agent"
version = "0.1.0"
description = "This agent chains with the post extractor agent to perform an analysis on the posts and output the most relevant topic"
authors = ["Alejandro <alejandro.madrigal@fetch.ai>"]
authors = [
{ name = "Alejandro", email = "alejandro.madrigal@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
18 changes: 10 additions & 8 deletions 6-deployed-agents/finance/company-overview-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[tool.poetry]
[project]
name = "company-overview-agent"
version = "0.1.0"
description = "This agent helps you to get overview of a given company's ticker symbol."
authors = ["abhifetch <abhi.gangani@fetch.ai>"]
authors = [
{ name = "abhifetch", email = "abhi.gangani@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requests = "^2.32.3"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
"requests>=2.32.3",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
[tool.poetry]
[project]
name = "company-ticker-resolver-agent"
version = "0.1.0"
description = "This agent helps you to get ticker symbol for the given company name"
authors = ["abhifetch <abhi.gangani@fetch.ai>"]
description = "This agent returns a company ticker symbol based on a given company name"
authors = [
{ name = "abhifetch", email = "abhi.gangani@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
openai = "^1.45.0"
requests = "^2.32.3"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
"openai>=1.45.0",
"requests>=2.32.3",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
21 changes: 11 additions & 10 deletions 6-deployed-agents/finance/finance-q&a-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[tool.poetry]
[project]
name = "finance-qa-agent"
version = "0.1.0"
description = ""
authors = ["Beniamino Daniele <beniamino.daniele@fetch.ai>"]
description = "This agent provides answers to questions related to finance and economics"
authors = [
{ name = "Beniamino Daniele", email = "beniamino.daniele@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
openai = "^1.16.1"

requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
"openai>=1.16.1",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[tool.poetry]
[project]
name = "financial-news-sentiment-agent"
version = "0.1.0"
description = "This agent helps you to get financial news and their financial sentiments of given ticker symbol"
authors = ["abhifetch <abhi.gangani@fetch.ai>"]
authors = [
{ name = "abhifetch", email = "abhi.gangani@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requests = "^2.32.3"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
"requests>=2.32.3",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[tool.poetry]
[project]
name = "finbert-sentiment-agent"
version = "0.1.0"
description = "This agent helps you to get finbert sentiment of a given financial text."
authors = ["abhifetch <abhi.gangani@fetch.ai>"]
authors = [
{ name = "abhifetch", email = "abhi.gangani@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requests = "^2.32.3"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
"requests>=2.32.3",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
20 changes: 11 additions & 9 deletions 6-deployed-agents/finance/stock-price-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[tool.poetry]
[project]
name = "stocks-agent"
version = "0.1.0"
description = "This agent helps you to get stocks price for given ticker symbol."
authors = ["Abhi Gangani <abhi.gangani@fetch.ai>"]
description = "This agent will find share prices of a given company ticker."
authors = [
{ name = "Abhi Gangani", email = "abhi.gangani@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requests = "^2.32.3"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
"requests>=2.32.3",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[tool.poetry]
[project]
name = "tech-analysis-agent"
version = "0.1.0"
description = "This agent helps you to get techincal analysis of stock ticker using different indicators."
authors = ["abhifetch <abhi.gangani@fetch.ai>"]
authors = [
{ name = "abhifetch", email = "abhi.gangani@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requests = "^2.32.3"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
"requests>=2.32.3",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tool.poetry]
[project]
name = "geoapify-car-park"
version = "0.1.0"
description = "Geoapify Car Park Locator Agent"
authors = ["Kshipra Dhame <kshipra.dhame@fetch.ai>"]
description = "This agent returns the car parking spaces near specific coordinates"
authors = [
{ name = "Kshipra Dhame", email = "kshipra.dhame@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tool.poetry]
[project]
name = "google-geolocation-agent"
version = "0.1.0"
description = "Google API Geolocation Agent"
authors = ["Alejandro Morales <alejandro.madrigal@fetch.ai>"]
description = "This agent is a simple agent that returns the geocode of a given address"
authors = [
{ name = "Alejandro Morales", email = "alejandro.madrigal@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
19 changes: 10 additions & 9 deletions 6-deployed-agents/geo/google-maps-places-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[tool.poetry]
[project]
name = "google-maps-places-agent"
version = "0.1.0"
description = ""
authors = ["Dacksus <david.noack@fetch.ai>"]
description = "This agent exposes the Google places API via a simple POI protocol"
authors = [
{ name = "Dacksus", email = "david.noack@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"

requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
20 changes: 11 additions & 9 deletions 6-deployed-agents/geo/open-charge-map-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[tool.poetry]
[project]
name = "open-charge-map-agent"
version = "0.1.0"
description = ""
authors = ["Florian Wilde <florian.wilde@fetch.ai>"]
description = "This agent will return a list of EV Chargers wrapped as a Point of Interest"
authors = [
{ name = "Florian Wilde", email = "florian.wilde@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requests = "^2.32.3"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
"requests>=2.32.3",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tool.poetry]
[project]
name = "opencage-geolocation-agent"
version = "0.1.0"
description = "OpenCage Geolocation Agent"
authors = ["Kshipra Dhame <kshipra.dhame@fetch.ai>"]
authors = [
{ name = "Kshipra Dhame", email = "kshipra.dhame@fetch.ai" }
]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
uagents = "^0.22.0"
requires-python = ">=3.10,<3.13"
dependencies = [
"uagents>=0.22.0",
]

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Loading