Skip to content

Commit

Permalink
ThejasNU/move cloning the repo from ssh to https (#47)
Browse files Browse the repository at this point in the history
* move ssh to https for clone

* change dependency name

* Update README.md

* Update README.md
  • Loading branch information
ThejasNU authored Jan 16, 2025
1 parent 551c77b commit 2671ada
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ The mono-repo for the Couchbase Agent Catalog project.
1. Make sure you have Python 3.12 and [Poetry](https://python-poetry.org/docs/#installation) installed!

2. Clone this repository.
Make sure you have your SSH key setup!

```bash
git clone git@github.com:couchbaselabs/agent-catalog.git
git clone https://github.com/couchbaselabs/agent-catalog
```

3. You are now ready to install the Agent Catalog package! We recommend using Anaconda to create a virtual environment
Expand Down Expand Up @@ -65,10 +64,9 @@ The mono-repo for the Couchbase Agent Catalog project.
1. Make sure you have Python 3.12 and [Poetry](https://python-poetry.org/docs/#installation) installed!

2. Clone this repository.
Make sure you have your SSH key setup!

```bash
git clone git@github.com:couchbaselabs/agent-catalog.git
git clone https://github.com/couchbaselabs/agent-catalog
```

3. Within *your own* `pyproject.toml` file, add the following dependency to your project:
Expand Down
3 changes: 1 addition & 2 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,10 @@ Building From Source (with Poetry)
1. Make sure you have Python 3.12 and `Poetry <https://python-poetry.org/docs/#installation>`_ installed!

2. Clone this repository.
Make sure you have your SSH key setup!

.. code-block:: bash
git clone git@github.com:couchbaselabs/agent-catalog.git
git clone https://github.com/couchbaselabs/agent-catalog
3. Within *your own* ``pyproject.toml`` file, add the following dependency to your project:
The ``path`` should point to the location of the ``agentc`` package (and is relative to the ``pyproject.toml``
Expand Down
2 changes: 1 addition & 1 deletion templates/agents/with_controlflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This directory contains a starter project for building agents with Couchbase, Co
2. Clone this repository and navigate to this directory (we will assume all subsequent commands are run from here).

```bash
git clone git@github.com:couchbaselabs/agent-catalog.git
git clone https://github.com/couchbaselabs/agent-catalog
cd templates/agents/with_controlflow
```

Expand Down
2 changes: 1 addition & 1 deletion templates/agents/with_controlflow/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ python = "^3.12"

# The agent framework of choice.
[tool.poetry.dependencies.controlflow]
git = "git@github.com:PrefectHQ/ControlFlow.git"
git = "https://github.com/PrefectHQ/ControlFlow"
rev = "f259fa8144ed31b8bde5902a2de8548dd4601ce5"

# TODO (GLENN): Replace this with the PyPI package once it's available.
Expand Down

0 comments on commit 2671ada

Please sign in to comment.