-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
v2.2 with MCP SSE and STDIO #480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| FROM python:3.11-slim | ||
| WORKDIR /app | ||
| COPY . . | ||
| RUN pip install flask praisonai==2.1.6 gunicorn markdown | ||
| RUN pip install flask praisonai==2.2.0 gunicorn markdown | ||
| EXPOSE 8080 | ||
| CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
|
||
| [project] | ||
| name = "praisonaiagents" | ||
| version = "0.0.82" | ||
| version = "0.0.83" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainConfirm version bump consistency and regenerate lock file. The Run: and commit the updated lock file. 🏁 Script executed: poetry lockLength of output: 110 🏁 Script executed: # Inspect the locked package metadata to verify the version bump
grep -n '^version = ' poetry.lock || echo "No version lines found in poetry.lock"
head -n 20 poetry.lockLength of output: 9177 🏁 Script executed: # Locate all project manifest and lock files to verify where version bumps should be applied
find . -type f -name 'pyproject.toml'
find . -type f -name 'poetry.lock'Length of output: 141 🏁 Script executed: # Check if the root pyproject.toml references the praisonai‐agents subproject
grep -R 'src/praisonai-agents' -n pyproject.toml
# List all path dependencies in root pyproject.toml
grep -R 'path\s*=' -n pyproject.toml
# Show the top of the root pyproject.toml for context
head -n 100 pyproject.tomlLength of output: 2851 🏁 Script executed: # Verify if praisonaiagents is present in the lock file and its pinned version
grep -R 'name = "praisonaiagents"' -n poetry.lock -A1 || echo "praisonaiagents not found in lock file"Length of output: 109 Regenerate the lock file to bump poetry update praisonaiagents
# or simply
poetry lockand commit the updated • Location: poetry.lock (line ~6051 shows 🤖 Prompt for AI Agents |
||
| description = "Praison AI agents for completing complex tasks with Self Reflection Agents" | ||
| authors = [ | ||
| { name="Mervin Praison" } | ||
|
|
@@ -18,7 +18,9 @@ dependencies = [ | |
|
|
||
| [project.optional-dependencies] | ||
| mcp = [ | ||
| "mcp>=1.6.0" | ||
| "mcp>=1.6.0", | ||
| "fastapi>=0.115.0", | ||
| "uvicorn>=0.34.0" | ||
| ] | ||
|
|
||
| memory = [ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Mismatch of
praisonaiagentsversionThe base image still installs
praisonaiagents>=0.0.4, but yourpyproject.tomlbumps it to0.0.83. Please align this pin to avoid pulling an older release.Apply:
📝 Committable suggestion
🤖 Prompt for AI Agents