Skip to content

Commit 4b43c48

Browse files
authored
doc: Fix README.md (#3)
1 parent 8ed2ead commit 4b43c48

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ The main purpose of this repository is to:
4545

4646
1. Clone the repository:
4747
```sh
48-
git clone https://github.com/your-username/allie-flowkit-python.git
49-
cd allie-flowkit-python
48+
git clone https://github.com/allie-pyflowkit.git
49+
cd allie-pyflowkit
5050
```
5151

5252
2. Install the required dependencies:
@@ -69,15 +69,15 @@ The main purpose of this repository is to:
6969
## Adding Custom Functions
7070

7171
1. **Create a New Function:**
72-
- Add your function code as an endpoint to a new Python file in the `app/enpoints` directory.
72+
- Add your function code as an endpoint to a new Python file in the `app/endpoints` directory.
7373
Use the `app/endpoints/splitter.py` file and its endpoints as an example.
7474
Be explicit about the input and output of the function, as this will be used by the Allie Agent to call the function.
7575

7676
2. **Add the models for the function:**
7777
- Add the models for the input and output of the function in the `app/models` directory.
7878
Use the `app/models/splitter.py` file its models as an example.
7979

80-
2. **Add the enpoints to the service:**
80+
2. **Add the endpoints to the service:**
8181
- Import your module in the `app/app.py` file and add the router to the service.
8282
```python
8383
app.include_router(splitter.router, prefix="/custom_module", tags=["custom_module"])

0 commit comments

Comments
 (0)