Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to improve the AgenticFleet application, including updates to scripts, code refactoring, and version updates. The most important changes are grouped by their themes below:
Script Updates:
scripts/agenticfleet.py
: Added a print statement to indicate whether the application is running with or without OAuth. Changed the port from 8001 to 8000. [1] [2]scripts/run.py
: Updated the port from 8001 to 8000 in therun_app
function.scripts/run.sh
: Added a new script to set environment variables, activate the virtual environment, and run the application.scripts/run_direct.py
: Introduced a new script to run the application directly, setting environment variables and importing the CLI.scripts/start_server.sh
: Added a new script to activate the virtual environment, set the Python path, and run the Chainlit app.Code Refactoring:
src/agentic_fleet/agent_registry.py
: Removed the entire file, which included functions for initializing default agents and agent teams.src/agentic_fleet/agent_registry/__init__.py
: Added a new module with functions for initializing default agents and agent teams.src/agentic_fleet/apps/chainlit_app/app.py
: Removed the entire file, which implemented the Chainlit-based chat interface for AgenticFleet.src/agentic_fleet/apps/chainlit_ui/agent_registry/default_agents.py
: Added a new module defining default agents for the Chainlit UI.src/agentic_fleet/apps/chainlit_ui/components/chat/message.py
: Added a new component for rendering chat messages in the Chainlit UI.Version Update:
src/agentic_fleet/__init__.py
: Updated the version from 0.1.0 to 0.4.9.