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.
Describe the bug
A clear and concise description of what the bug is and what the main root cause error is. Test very thoroughly before submitting.
To Reproduce
Steps to reproduce the behavior:
clone repository and navigate to root directory
git clone https://github.com/kyegomez/swarms.git
cd swarms
setup python environment and activate it
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
headless install
pip install -e "."
Fails with the following error: "INFO: pip is looking at multiple versions of swarms-cloud to determine which version is compatible with other requirements. This could take a while.
ERROR: Could not find a version that satisfies the requirement sse-starlight (from swarms-cloud) (from versions: none)
ERROR: No matching distribution found for sse-starlight"
Expected behavior
Successful install of swarms-cloud.
Screenshots

If applicable, add screenshots to help explain your problem.
Additional context
Problem resolves when updating the pyproject.toml file line 33 to
sse-starlette = "*"
I suspect a simple typo and will submit a pull request to correct this error.