docs/current_docs/partials/cookbook/agents/_env-use-strings.mdx
The following Dagger Function creates an environment with a string input and a string output. The input is a question, and the output represents the answer. The environment is given to an LLM with a prompt describing how it should complete its work.
<Tabs groupId="language" queryString="sdk"> <TabItem value="go" label="Go">Ask a question:
<Tabs groupId="shell"> <TabItem value="System shell"> ```shell dagger -c 'agent "what is an ion"' ``` </TabItem> <TabItem value="Dagger Shell"> ```shell title="First type 'dagger' for interactive mode." agent "what is an ion" ``` </TabItem> <TabItem value="Dagger CLI"> ```shell dagger call agent --question="what is an ion?" ``` </TabItem> </Tabs>