Skip to content

Commit

Permalink
Fix mild formatting issues (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaranvpl authored Sep 6, 2024
1 parent 29f717c commit 4bca429
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/en/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ Next, define your FastAgency application. This ties together your workflow and t

For Mesop applications, use `MesopIO` to enable web-based interactions.

## Run Application
### Run Application

Once everything is set up, you can run your FastAgency application using the following command:

Expand Down Expand Up @@ -346,7 +346,7 @@ def weather_workflow(io: Chatable, initial_message: str, session_id: str) -> str

This code snippet sets up a simple weather agent that calls an external weather API using the registered functions generated from the `openapi.json` URL.

### Define FastAgency Application
#### Define FastAgency Application

Next, define your FastAgency application.

Expand All @@ -356,15 +356,15 @@ from fastagency.core.io.console import ConsoleIO
app = FastAgency(wf=wf, io=ConsoleIO())
```

## Run Application
#### Run Application

Once everything is set up, you can run your FastAgency application using the following command:

```console
fastagency run
```

### Output
#### Output

The output will vary based on the city and the current weather conditions:

Expand Down

0 comments on commit 4bca429

Please sign in to comment.