Skip to content

Commit

Permalink
fix: repo name in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sohamganatra committed Aug 13, 2024
1 parent cf03b17 commit 6bd1f58
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/framework/langgraph.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ After the compilation of workflow, we invoke the LLM with a task, and stream the
"messages": [
(
"human",
# "Star the Github Repository sawradip/sawradip",
# "Star the Github Repository composiohq/composio",
"Get my information.",
)
]
Expand Down
6 changes: 3 additions & 3 deletions docs/framework/phidata.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ These commands prepare your environment for seamless interaction between PhiData

assistant = Assistant(tools=composio_tools, show_tool_calls=True)

assistant.print_response("Can you star sawradip/sawradip repo?")
assistant.print_response("Can you star composiohq/composio repo?")
```

</CodeGroup>
Expand All @@ -65,8 +65,8 @@ These commands prepare your environment for seamless interaction between PhiData
<CodeGroup>
```bash Executing Agents

- Running: github_star_a_repository_for_the_authenticated_user(owner=sawradip, repo=sawradip)
I have successfully starred the repository `sawradip/sawradip` for you.
- Running: github_star_a_repository_for_the_authenticated_user(owner=composiohq, repo=composio)
I have successfully starred the repository `composiohq/composio` for you.
```

</CodeGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
llm = OpenAI(model="gpt-4o")

research_topic = "LLM agents function calling"
target_repo = "sawradip/sawradip"
target_repo = "composiohq/composio"
n_issues = 3


def main():
# Get All the tools
composio_toolset = ComposioToolSet()
tools = composio_toolset.get_actions(actions=[Action.GITHUB_ISSUES_CREATE])
tools = composio_toolset.get_actions(actions=[Action.GITHUB_CREATE_AN_ISSUE])
arxiv_tool = ArxivToolSpec()

prefix_messages = [
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/langgraph/langgraph_demo_toolnode.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def call_model(state: MessagesState):
"messages": [
(
"human",
# "Star the Github Repository sawradip/sawradip",
# "Star the Github Repository composiohq/composio",
"Get my information.",
)
]
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/phidata/phidata_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

assistant = Assistant(tools=composio_tools, show_tool_calls=True)

assistant.print_response("Can you start sawradip/sawradip repo?")
assistant.print_response("Can you start composiohq/composio repo?")
# pprint(tool)

0 comments on commit 6bd1f58

Please sign in to comment.