# OpenAIClient (Chat GPT)

In this super simple example, we'll create and submit a request to `gpt-5.1`, in only a few lines of code.&#x20;

{% hint style="success" %}
The [OpenAIClient](/core-modules/utility-classes/openai-client-responses.md) is designed to be easy to use, read, and implement in your own codebase.
{% endhint %}

{% code overflow="wrap" %}

```csharp
//Declare a client
var aic = new OpenAIClient(apiKey);

//Get a response
var response = await aic.GetResponseAsync(
   OpenAIClient.GPT51("It's this easy to message AI??")
   .WithInstructions("You're a helpful assistant, respond kindly and to the point"));

//Use the built in MessageContent Property to retrieve the latest message
if (response.IsSuccessful)
    Console.WriteLine(response.Data.MessageContent);
```

{% endcode %}


---

# 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.perigee.software/examples-and-demos/openaiclient-chat-gpt.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.
