Skip to content
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

chore(core): fix some comments #525

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integrations/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ Further details on `conventional commits` can be found here: <https://www.conven

## Support and help

Suppport and extra information is available in our [documentation](https://fetch.ai/docs) and on [Discord](https://discord.com/invite/fetchai)
Support and extra information is available in our [documentation](https://fetch.ai/docs) and on [Discord](https://discord.com/invite/fetchai)
2 changes: 1 addition & 1 deletion integrations/finbert/src/agents/finbert_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def get_classification(ctx: Context, sender: str, text: str):
await ctx.send(sender, UAResponse(response=model_res))
return
except Exception as ex:
# Catch and notify any exception occured during API call or data handling
# Catch and notify any exception occurred during API call or data handling
await ctx.send(sender, Error(error=f"An exception occurred while processing the request: {ex}"))
return

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async def fetch_data_from_rapidapi(name, email, phone, address, skills, certific
return fact
except:
print(f"An error occurred")
return "An error occured"
return "An error occurred"


@simples.on_message(model=Request, replies={UAgentResponse})
Expand Down
2 changes: 1 addition & 1 deletion integrations/seo-agent/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def extractKeywords(text: str, url: str):

def compare_websites_for_keywords(superior_page: Document, inferior_page: Document, keywords: List[str]) -> str:
"""
Compares 2 websites based on keywords and return a assesment why one is better ranked than the other
Compares 2 websites based on keywords and return a assessment why one is better ranked than the other
"""

prompt = f"""
Expand Down
2 changes: 1 addition & 1 deletion python/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The system requirements for the Python μAgents package are as follows, but libraries for more platforms and languages will be released soon.

!!! Info "System requirements"
The Python μAgents pacakge runs on `Ubuntu/Debian`, `MacOS`, and `Windows`.
The Python μAgents package runs on `Ubuntu/Debian`, `MacOS`, and `Windows`.

You need <a href="https://www.python.org/downloads/" target="_blank">Python</a> 3.8, 3.9, 3.10 or 3.11 on your system.

Expand Down
2 changes: 1 addition & 1 deletion python/scripts/do_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def upload_packages(self):
stderr=sys.stderr,
)
if result.returncode != 0:
raise RuntimeError("Upload pacakges failed!")
raise RuntimeError("Upload packages failed!")

def main(self):
"""Run release process."""
Expand Down
Loading