Skip to content

Commit

Permalink
Merge branch 'main' into feat/inspector-link
Browse files Browse the repository at this point in the history
  • Loading branch information
jrriehl authored Sep 6, 2024
2 parents ffb4899 + 5984db5 commit ae03dc3
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
* @jrriehl @lrahmani @Archento
# The default code owners of the uagents repo.
* @jrriehl @Archento @lrahmani

# Code owner of the integrations folder
/integrations/ @devjsc
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

0 comments on commit ae03dc3

Please sign in to comment.