# IOmod Dependencies

IO Modules (IOmods) are defined in the `iomod.dependencies` table within the service manifest.

{% code title="service.toml" %}

```
[iomod.dependencies.s3]
coordinates = "akkoro.aws.s3"
version = "0.1.0"
```

{% endcode %}

IOmods are defined by coordinates in the format `organization.namespace.name` and a [semantic version](https://semver.org/). Occasionally these will be seen written together in the format `org.namespace.name@major.minor.patch` .

By default IOmods will be fetched from the public [IO Module registry](/learn-assemblylift/io-modules/registry.md) at **registry.assemblylift.akkoro.io**. IOmod binaries can also be loaded from a local path, however this is intended for IOmod development.

```
[iomod.dependencies.s3]
coordinates = "akkoro.aws.s3"
version = "0.1.0"
type = "file"
from = "/absolute/path/to/executable"
```

Further details on IO Modules can be found in its [dedicated chapter](/learn-assemblylift/io-modules.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.assemblylift.akkoro.io/learn-assemblylift/services/iomod-dependencies.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
