diff --git a/6-deployed-agents/chained/asset-signal-agent/pyproject.toml b/6-deployed-agents/chained/asset-signal-agent/pyproject.toml index 4652191..81d048c 100644 --- a/6-deployed-agents/chained/asset-signal-agent/pyproject.toml +++ b/6-deployed-agents/chained/asset-signal-agent/pyproject.toml @@ -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 "] +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" diff --git a/6-deployed-agents/chained/blog-creator-agent/pyproject.toml b/6-deployed-agents/chained/blog-creator-agent/pyproject.toml index bfead66..839e2bb 100644 --- a/6-deployed-agents/chained/blog-creator-agent/pyproject.toml +++ b/6-deployed-agents/chained/blog-creator-agent/pyproject.toml @@ -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 "] +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" \ No newline at end of file diff --git a/6-deployed-agents/chained/topic-extractor-agent/pyproject.toml b/6-deployed-agents/chained/topic-extractor-agent/pyproject.toml index ed8ee0f..eab1516 100644 --- a/6-deployed-agents/chained/topic-extractor-agent/pyproject.toml +++ b/6-deployed-agents/chained/topic-extractor-agent/pyproject.toml @@ -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 "] +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" \ No newline at end of file diff --git a/6-deployed-agents/finance/company-overview-agent/pyproject.toml b/6-deployed-agents/finance/company-overview-agent/pyproject.toml index 9b90704..ca50bab 100644 --- a/6-deployed-agents/finance/company-overview-agent/pyproject.toml +++ b/6-deployed-agents/finance/company-overview-agent/pyproject.toml @@ -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 "] +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" diff --git a/6-deployed-agents/finance/company-ticker-resolver-agent/pyproject.toml b/6-deployed-agents/finance/company-ticker-resolver-agent/pyproject.toml index 23a2f15..c629043 100644 --- a/6-deployed-agents/finance/company-ticker-resolver-agent/pyproject.toml +++ b/6-deployed-agents/finance/company-ticker-resolver-agent/pyproject.toml @@ -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 "] +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" diff --git a/6-deployed-agents/finance/finance-q&a-agent/pyproject.toml b/6-deployed-agents/finance/finance-q&a-agent/pyproject.toml index 08fdf73..8995d3f 100644 --- a/6-deployed-agents/finance/finance-q&a-agent/pyproject.toml +++ b/6-deployed-agents/finance/finance-q&a-agent/pyproject.toml @@ -1,16 +1,17 @@ -[tool.poetry] +[project] name = "finance-qa-agent" version = "0.1.0" -description = "" -authors = ["Beniamino Daniele "] +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" diff --git a/6-deployed-agents/finance/financial-news-sentiment-agent/pyproject.toml b/6-deployed-agents/finance/financial-news-sentiment-agent/pyproject.toml index d221355..b8750da 100644 --- a/6-deployed-agents/finance/financial-news-sentiment-agent/pyproject.toml +++ b/6-deployed-agents/finance/financial-news-sentiment-agent/pyproject.toml @@ -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 "] +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" diff --git a/6-deployed-agents/finance/finbert-financial-sentiment-agent/pyproject.toml b/6-deployed-agents/finance/finbert-financial-sentiment-agent/pyproject.toml index 4ab4d58..55ca4d3 100644 --- a/6-deployed-agents/finance/finbert-financial-sentiment-agent/pyproject.toml +++ b/6-deployed-agents/finance/finbert-financial-sentiment-agent/pyproject.toml @@ -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 "] +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" diff --git a/6-deployed-agents/finance/stock-price-agent/pyproject.toml b/6-deployed-agents/finance/stock-price-agent/pyproject.toml index 3a25c63..ba5a1f4 100644 --- a/6-deployed-agents/finance/stock-price-agent/pyproject.toml +++ b/6-deployed-agents/finance/stock-price-agent/pyproject.toml @@ -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 "] +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" diff --git a/6-deployed-agents/finance/technical-analysis-agent/pyproject.toml b/6-deployed-agents/finance/technical-analysis-agent/pyproject.toml index 4a3ff21..5cac9d5 100644 --- a/6-deployed-agents/finance/technical-analysis-agent/pyproject.toml +++ b/6-deployed-agents/finance/technical-analysis-agent/pyproject.toml @@ -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 "] +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" diff --git a/6-deployed-agents/geo/geoapify-car-park-locator-agent/pyproject.toml b/6-deployed-agents/geo/geoapify-car-park-locator-agent/pyproject.toml index 2cf433e..10b6957 100644 --- a/6-deployed-agents/geo/geoapify-car-park-locator-agent/pyproject.toml +++ b/6-deployed-agents/geo/geoapify-car-park-locator-agent/pyproject.toml @@ -1,14 +1,16 @@ -[tool.poetry] +[project] name = "geoapify-car-park" version = "0.1.0" -description = "Geoapify Car Park Locator Agent" -authors = ["Kshipra Dhame "] +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" diff --git a/6-deployed-agents/geo/google-api-geolocation-agent/pyproject.toml b/6-deployed-agents/geo/google-api-geolocation-agent/pyproject.toml index 8102ef0..d4179ed 100644 --- a/6-deployed-agents/geo/google-api-geolocation-agent/pyproject.toml +++ b/6-deployed-agents/geo/google-api-geolocation-agent/pyproject.toml @@ -1,14 +1,16 @@ -[tool.poetry] +[project] name = "google-geolocation-agent" version = "0.1.0" -description = "Google API Geolocation Agent" -authors = ["Alejandro Morales "] +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" diff --git a/6-deployed-agents/geo/google-maps-places-agent/pyproject.toml b/6-deployed-agents/geo/google-maps-places-agent/pyproject.toml index ae467ab..9dca276 100644 --- a/6-deployed-agents/geo/google-maps-places-agent/pyproject.toml +++ b/6-deployed-agents/geo/google-maps-places-agent/pyproject.toml @@ -1,15 +1,16 @@ -[tool.poetry] +[project] name = "google-maps-places-agent" version = "0.1.0" -description = "" -authors = ["Dacksus "] +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" diff --git a/6-deployed-agents/geo/open-charge-map-agent/pyproject.toml b/6-deployed-agents/geo/open-charge-map-agent/pyproject.toml index d387dc1..66c8aad 100644 --- a/6-deployed-agents/geo/open-charge-map-agent/pyproject.toml +++ b/6-deployed-agents/geo/open-charge-map-agent/pyproject.toml @@ -1,15 +1,17 @@ -[tool.poetry] +[project] name = "open-charge-map-agent" version = "0.1.0" -description = "" -authors = ["Florian Wilde "] +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" diff --git a/6-deployed-agents/geo/opencage-geolocation-agent/pyproject.toml b/6-deployed-agents/geo/opencage-geolocation-agent/pyproject.toml index f3b1ee9..5e02578 100644 --- a/6-deployed-agents/geo/opencage-geolocation-agent/pyproject.toml +++ b/6-deployed-agents/geo/opencage-geolocation-agent/pyproject.toml @@ -1,14 +1,16 @@ -[tool.poetry] +[project] name = "opencage-geolocation-agent" version = "0.1.0" description = "OpenCage Geolocation Agent" -authors = ["Kshipra Dhame "] +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" diff --git a/6-deployed-agents/knowledge-base/asi1-agent/pyproject.toml b/6-deployed-agents/knowledge-base/asi1-agent/pyproject.toml index 164a031..5a0b6d8 100644 --- a/6-deployed-agents/knowledge-base/asi1-agent/pyproject.toml +++ b/6-deployed-agents/knowledge-base/asi1-agent/pyproject.toml @@ -1,16 +1,18 @@ -[tool.poetry] +[project] name = "asi1-agent" version = "0.1.0" -description = "" -authors = ["Attila Bagoly "] +description = "This agent is a simple wrapper around asi1-mini Large Language Model." +authors = [ + { name = "Attila Bagoly", email = "attila.bagoly@fetch.ai" } +] readme = "README.md" - -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.22.4" -uagents-core = "^0.3.1" -openai = "^1.82.0" +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.22.4", + "uagents-core>=0.3.1", + "openai>=1.82.0", +] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/knowledge-base/claude-ai-agent/pyproject.toml b/6-deployed-agents/knowledge-base/claude-ai-agent/pyproject.toml index bdf2913..6bef22d 100644 --- a/6-deployed-agents/knowledge-base/claude-ai-agent/pyproject.toml +++ b/6-deployed-agents/knowledge-base/claude-ai-agent/pyproject.toml @@ -1,18 +1,21 @@ -[tool.poetry] +[project] name = "claude-agent" version = "0.1.0" -description = "" -authors = ["Florian Wilde "] +description = "This agent is a wrapper around the Claude.ai interface" +authors = [ + { name = "Florian Wilde", email = "florian.wilde@fetch.ai" } +] readme = "README.md" -packages = [{ include = "claude" }] - -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.22.4" -uagents-core = "^0.3.1" -requests = "^2.32.3" +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.22.4", + "uagents-core>=0.3.1", + "requests>=2.32.3", +] +[tool.poetry] +packages = [{ include = "claude" }] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/knowledge-base/google-gemini-agent/pyproject.toml b/6-deployed-agents/knowledge-base/google-gemini-agent/pyproject.toml index d9e0842..a27a8a3 100644 --- a/6-deployed-agents/knowledge-base/google-gemini-agent/pyproject.toml +++ b/6-deployed-agents/knowledge-base/google-gemini-agent/pyproject.toml @@ -1,17 +1,21 @@ -[tool.poetry] +[project] name = "gemini-agent" version = "0.1.0" -description = "" -authors = ["Florian Wilde "] +description = "This agent is a simple wrapper around Google's Gemini Large Language Model" +authors = [ + { name = "Florian Wilde", email = "florian.wilde@fetch.ai" } +] readme = "README.md" -packages = [{ include = "gemini" }] +requires-python = ">=3.10" +dependencies = [ + "uagents>=0.22.4", + "uagents-core>=0.3.1", + "google-genai>=1.4.0", +] -[tool.poetry.dependencies] -python = "^3.10" -uagents = "^0.22.4" -uagents-core = "^0.3.1" -google-genai = "^1.4.0" +[tool.poetry] +packages = [{ include = "gemini" }] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/knowledge-base/image-generator-agent/pyproject.toml b/6-deployed-agents/knowledge-base/image-generator-agent/pyproject.toml index 2ba9bc8..6bf3971 100644 --- a/6-deployed-agents/knowledge-base/image-generator-agent/pyproject.toml +++ b/6-deployed-agents/knowledge-base/image-generator-agent/pyproject.toml @@ -1,16 +1,18 @@ -[tool.poetry] +[project] name = "image-generator-agent" version = "0.1.0" -description = "This agent is integrated with LangChain's DallEAPIWrapper to generate images based on textual descriptions." -authors = ["Alejandro "] +description = "This agent uses OpenAI’s gpt-image-1.5 image model to generate images from text and perform image-to-image edits when an input image is provided" +authors = [ + { name = "Alejandro", email = "alejandro.madrigal@fetch.ai" } +] readme = "README.md" - -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.17.0" -langchain-community = "^0.0.25" -langchain-openai = ">=0.0.6" +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.17.0", + "langchain-community>=0.0.25", + "langchain-openai>=0.0.6", +] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" \ No newline at end of file diff --git a/6-deployed-agents/knowledge-base/openai-agent/pyproject.toml b/6-deployed-agents/knowledge-base/openai-agent/pyproject.toml index aba703c..256c289 100644 --- a/6-deployed-agents/knowledge-base/openai-agent/pyproject.toml +++ b/6-deployed-agents/knowledge-base/openai-agent/pyproject.toml @@ -1,18 +1,22 @@ -[tool.poetry] +[project] name = "openai-agent" version = "0.1.0" -description = "" -authors = ["James Riehl "] +description = "This agent is a simple wrapper around OpenAI's `gpt-4o-mini` Large Language Model" +authors = [ + { name = "James Riehl", email = "james.riehl@fetch.ai" } +] readme = "README.md" -packages = [{ include = "openai" }] +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.22.4", + "uagents-core>=0.3.1", + "openai>=1.82.0", + "requests>=2.32.3", +] -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.22.4" -uagents-core = "^0.3.1" -openai = "^1.82.0" -requests = "^2.32.3" +[tool.poetry] +packages = [{ include = "openai" }] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/search/tavily-search-agent/pyproject.toml b/6-deployed-agents/search/tavily-search-agent/pyproject.toml index 74b5dec..6be410a 100644 --- a/6-deployed-agents/search/tavily-search-agent/pyproject.toml +++ b/6-deployed-agents/search/tavily-search-agent/pyproject.toml @@ -1,14 +1,16 @@ -[tool.poetry] +[project] name = "tavily-agent" version = "0.1.0" -description = "TaVILY Agent" -authors = ["Florian Wilde "] +description = "This agent searches the web and returns quick, relevant results for a user’s prompt." +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" diff --git a/6-deployed-agents/utility/average-agent/pyproject.toml b/6-deployed-agents/utility/average-agent/pyproject.toml index 418ecf6..7cfd824 100644 --- a/6-deployed-agents/utility/average-agent/pyproject.toml +++ b/6-deployed-agents/utility/average-agent/pyproject.toml @@ -1,14 +1,16 @@ -[tool.poetry] +[project] name = "average-agent" version = "0.1.0" description = "He's just an average agent and a bit mean." -authors = ["Florian Wilde "] +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" diff --git a/6-deployed-agents/utility/github-organisation-agent/pyproject.toml b/6-deployed-agents/utility/github-organisation-agent/pyproject.toml index 312170e..a4861e9 100644 --- a/6-deployed-agents/utility/github-organisation-agent/pyproject.toml +++ b/6-deployed-agents/utility/github-organisation-agent/pyproject.toml @@ -1,15 +1,17 @@ -[tool.poetry] +[project] name = "github-organisation-agent" version = "0.1.0" -description = "GitHub Organisation Agent" -authors = ["Kshipra Dhame "] +description = "This agent returns github repository information of a given company name" +authors = [ + { name = "Kshipra Dhame", email = "kshipra.dhame@fetch.ai" } +] readme = "README.md" - -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.18.1" -requests = "^2.32.3" +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.18.1", + "requests>=2.32.3", +] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/utility/github-pull-requests-agent/pyproject.toml b/6-deployed-agents/utility/github-pull-requests-agent/pyproject.toml index f7d9f48..8f16004 100644 --- a/6-deployed-agents/utility/github-pull-requests-agent/pyproject.toml +++ b/6-deployed-agents/utility/github-pull-requests-agent/pyproject.toml @@ -1,15 +1,17 @@ -[tool.poetry] +[project] name = "github-pr-agent" version = "0.1.0" -description = "GitHub PR Agent" -authors = ["Kshipra Dhame "] +description = "This agent returns a list of open pull requests in a github repository with in an organisation" +authors = [ + { name = "Kshipra Dhame", email = "kshipra.dhame@fetch.ai" } +] readme = "README.md" - -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.18.1" -requests = "^2.32.3" +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.18.1", + "requests>=2.32.3", +] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/utility/github-repositories-agent/pyproject.toml b/6-deployed-agents/utility/github-repositories-agent/pyproject.toml index 57244c4..4cb7ffb 100644 --- a/6-deployed-agents/utility/github-repositories-agent/pyproject.toml +++ b/6-deployed-agents/utility/github-repositories-agent/pyproject.toml @@ -1,15 +1,17 @@ -[tool.poetry] +[project] name = "github-repositories-agent" version = "0.1.0" -description = "GitHub Repositories Agent" -authors = ["Kshipra Dhame "] +description = "This agent returns the list of repositories of a given organisation" +authors = [ + { name = "Kshipra Dhame", email = "kshipra.dhame@fetch.ai" } +] readme = "README.md" - -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.18.1" -requests = "^2.32.3" +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.18.1", + "requests>=2.32.3", +] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/utility/grammar-agent/pyproject.toml b/6-deployed-agents/utility/grammar-agent/pyproject.toml index a4f3948..e924260 100644 --- a/6-deployed-agents/utility/grammar-agent/pyproject.toml +++ b/6-deployed-agents/utility/grammar-agent/pyproject.toml @@ -1,15 +1,17 @@ -[tool.poetry] +[project] name = "grammar-agent" version = "0.1.0" -description = "Grammar Agent" -authors = ["Kshipra Dhame "] +description = "This agent checks grammar and spelling for a given text" +authors = [ + { name = "Kshipra Dhame", email = "kshipra.dhame@fetch.ai" } +] readme = "README.md" - -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.18.1" -requests = "^2.32.3" +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.18.1", + "requests>=2.32.3", +] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/utility/openAI-translator-agent/pyproject.toml b/6-deployed-agents/utility/openAI-translator-agent/pyproject.toml index 4c23589..c47b5ad 100644 --- a/6-deployed-agents/utility/openAI-translator-agent/pyproject.toml +++ b/6-deployed-agents/utility/openAI-translator-agent/pyproject.toml @@ -1,16 +1,20 @@ -[tool.poetry] +[project] name = "openai-agent" version = "0.1.0" -description = "OpenAI Translator Agent" -authors = ["James Riehl "] +description = "This agent uses OpenAI's gpt-4o-mini LLM to translate a given text from one language to another" +authors = [ + { name = "James Riehl", email = "james.riehl@fetch.ai" } +] readme = "README.md" -packages = [{ include = "openai" }] +requires-python = ">=3.10,<3.13" +dependencies = [ + "uagents>=0.22.0", + "requests>=2.32.3", +] -[tool.poetry.dependencies] -python = "^3.10,<3.13" -uagents = "^0.22.0" -requests = "^2.32.3" +[tool.poetry] +packages = [{ include = "openai" }] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/6-deployed-agents/utility/post-extractor-agent/pyproject.toml b/6-deployed-agents/utility/post-extractor-agent/pyproject.toml index 69f8063..b294150 100644 --- a/6-deployed-agents/utility/post-extractor-agent/pyproject.toml +++ b/6-deployed-agents/utility/post-extractor-agent/pyproject.toml @@ -1,15 +1,17 @@ -[tool.poetry] +[project] name = "post-extractor-agent" version = "0.1.0" -description = "Post Extractor Agent" -authors = ["Alejandro "] +description = "This agent retrieves the latest requested posts from Reddit" +authors = [ + { name = "Alejandro", email = "alejandro.madrigal@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" diff --git a/6-deployed-agents/utility/weather-agent/pyproject.toml b/6-deployed-agents/utility/weather-agent/pyproject.toml index c8fac57..8a881c2 100644 --- a/6-deployed-agents/utility/weather-agent/pyproject.toml +++ b/6-deployed-agents/utility/weather-agent/pyproject.toml @@ -1,15 +1,17 @@ -[tool.poetry] +[project] name = "weather-agent" version = "0.1.0" -description = "Weather Agent" -authors = ["Kshipra Dhame "] +description = "This agent returns weather information for a specified location" +authors = [ + { name = "Kshipra Dhame", email = "kshipra.dhame@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" diff --git a/6-deployed-agents/utility/website-scraper-agent/pyproject.toml b/6-deployed-agents/utility/website-scraper-agent/pyproject.toml index 954f0db..5cabce7 100644 --- a/6-deployed-agents/utility/website-scraper-agent/pyproject.toml +++ b/6-deployed-agents/utility/website-scraper-agent/pyproject.toml @@ -1,15 +1,17 @@ -[tool.poetry] +[project] name = "website-scraping-agent" version = "0.1.0" -description = "Website Scraping Agent" -authors = ["Kshipra Dhame "] +description = "This agent returns the content of a given website" +authors = [ + { name = "Kshipra Dhame", email = "kshipra.dhame@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"