Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix API key docs url #7

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Before you start to integrate the AI Engine into your app, you might want to get

#### Creating the AIEngine client object

To find out how to generate an <code>apiKey</code> check out the documentation regarding [Agentverse API keys](https://fetch.ai/docs/guides/apis/agent-service-creation-apis).
To find out how to generate an <code>apiKey</code> check out the documentation regarding [Agentverse API keys](https://fetch.ai/docs/guides/apis/agent-function-creation-apis).

```javascript
import { AiEngine } from "@fetchai/ai-engine-sdk";
Expand Down Expand Up @@ -89,7 +89,7 @@ There are 5 different types of messages which are generated by the AI Engine and

#### Replying to the different type of messages

All message types (expect for the AI engine message and stop message) expects a response from the user and the SDK implements methods for sending reply in response to those different type of messages respectively.
All message types (expect for the AI engine message and stop message) expect a response from the user and the SDK implements methods for sending reply in response to those different type of messages respectively.
The first argument of all these reply methods is the <code>Message</code> object to which we want to send back the response.
The SDK methods you can use to reply to:

Expand Down
Loading