Skip to content

Commit

Permalink
Merge pull request #22 from Qredence/Update-0.4.21
Browse files Browse the repository at this point in the history
Bump version to 0.4.21 and update dependency specifications; add run …
  • Loading branch information
Zochory authored Jan 13, 2025
2 parents 60606a4 + d6cd7b7 commit 693e381
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 18 deletions.
22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "hatchling.build"

[project]
name = "agentic-fleet"
version = "0.4.12"
version = "0.4.21"
summary = "A multi-agent system for adaptive AI reasoning and automation"
requires-python = ">=3.10"
readme = { file = "README.md", content-type = "text/markdown" }
description = "Adaptive Agentic AI Reasoning That Empower, Inform, and Integrate Seamlessly"
urls.Homepage = "https://www.qredence.ai"
urls.homepage = "https://www.qredence.ai"
urls."Bug Tracker" = "https://github.com/Qredence/AgenticFleet/issues"
urls.Documentation = "https://github.com/Qredence/AgenticFleet/tree/main/docs"
urls."Source Code" = "https://github.com/Qredence/AgenticFleet"
urls.documentation = "https://github.com/Qredence/AgenticFleet/tree/main/docs"
urls."source code" = "https://github.com/Qredence/AgenticFleet"
keywords = ["agentic", "autogen", "ai-agents", "agentic-ai", "machine-learning", "artificial-intelligence", "multi-agent", "ai", "qredence"]
authors = [
{name = "Zachary BENSALEM", email = "contact@zachary.ai"}
Expand Down Expand Up @@ -45,16 +45,16 @@ dependencies = [
"requests>=2.32.3",
"httpx>=0.25.0",
"asyncio>=3.4.3",
"aiohttp==3.11.11",
"aiohttp>=3.11.11,<4.0.0",
"python-multipart>=0.0.6",

# AI & Machine Learning Stack
"agentops>=0.3.21",
"autogen-agentchat==0.4.0",
"autogen-core==0.4.0",
"autogen-ext[openai,azure]==0.4.0",
"autogen-ext[docker]==0.4.0",
"autogen-ext[magentic-one]==0.4.0",
"autogen-ext[openai,azure]>=0.4.0,<0.5.0",
"autogen-ext[docker]>=0.4.0,<0.5.0",
"autogen-ext[magentic-one]>=0.4.0,<0.5.0",
"magentic-one-cli==0.2.0",
"composio-core>=0.6.11.post1",

Expand All @@ -78,12 +78,12 @@ dependencies = [
"bing>=0.31",
"markitdown>=0.0.1a3",
"beautifulsoup4>=4.12.0",
"playwright==1.49.1",
"playwright>=1.49.1,<2.0.0",
"tenacity>=9.0.0",
"opentelemetry-instrumentation-fastapi>=0.44b0",
"chainlit==2.0.2",
"docker>=7.1.0",
"promptflow-tracing==1.17.1",
"promptflow-tracing>=1.17.1,<2.0.0",
"rich>=13.9.4",
"aioconsole>=0.8.1",
]
Expand Down Expand Up @@ -119,7 +119,7 @@ packages = ["src"]
allow-direct-references = true

[project.scripts]
agenticfleet = "src.frontend.app:main"
agenticfleet = "scripts.run:main"

[tool.hatch.build]
artifacts = [
Expand Down
Empty file added scripts/__init__.py
Empty file.
10 changes: 10 additions & 0 deletions scripts/run.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import os
import subprocess

def main():
"""Run the Chainlit application."""
app_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), "src", "app", "app.py")
subprocess.run(["chainlit", "run", app_path, "--port", "8001"], check=True)

if __name__ == "__main__":
main()
14 changes: 7 additions & 7 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 693e381

Please sign in to comment.