Sample code for 30+ languages & platforms
C#

Upload a File to an AI Provider (OpenAI, Google, Antropic, X)

See more AI Examples

Uploads a file to an AI provider using the provider's File API and returns the id that can later be used to reference the file in an query. This currently works with ChatGPT, Gemini, Claude, and Grok.

Chilkat C# Downloads

C#
bool success = false;

Chilkat.Ai ai = new Chilkat.Ai();

// The provider can be "openai", "google", "claude", "grok", or any AI that supports uploading files for later reference by ID.
ai.Provider = "openai";
// Use your provider's API key.
ai.ApiKey = "MY_API_KEY";

// We can upload directly from a file in the filesystem, or from a Chilkat StringBuilder, or from a Chilkat BinData.

// Some AI providers require a content-type.
// Also, some AI providers are picky about what content-type's are accepted.
// Check the AI provider's documentation.
// "application/json" is generally always acceptable.
// "text/plain" can be used as a fallback for any text file.
string contentType = "application/json";
string localFilePath = "qa_data/hamlet.json";
string filenameOnServer = "hamlet.json";

// Upload directly from a file.
string file_id = ai.UploadFile(localFilePath,contentType);
if (ai.LastMethodSuccess == false) {
    Debug.WriteLine(ai.LastErrorText);
    Debug.WriteLine("AI File Upload Failed.");
}
else {
    Debug.WriteLine("File ID: " + file_id);
    Debug.WriteLine("File uploaded.");
}

// Upload from the contents of a StringBuilder
Chilkat.StringBuilder sb = new Chilkat.StringBuilder();
success = sb.LoadFile(localFilePath,"utf-8");
if (success == false) {
    Debug.WriteLine(sb.LastErrorText);
    return;
}

file_id = ai.UploadFileSb(sb,filenameOnServer,contentType);
if (ai.LastMethodSuccess == false) {
    Debug.WriteLine(ai.LastErrorText);
    Debug.WriteLine("AI File Upload Failed.");
}
else {
    Debug.WriteLine("File ID: " + file_id);
    Debug.WriteLine("File uploaded.");
}

// Upload from the contents of a BinData
Chilkat.BinData bd = new Chilkat.BinData();
success = bd.LoadFile(localFilePath);
if (success == false) {
    Debug.WriteLine(bd.LastErrorText);
    return;
}

file_id = ai.UploadFileBd(bd,filenameOnServer,contentType);
if (ai.LastMethodSuccess == false) {
    Debug.WriteLine(ai.LastErrorText);
    Debug.WriteLine("AI File Upload Failed.");
}
else {
    Debug.WriteLine("File ID: " + file_id);
    Debug.WriteLine("File uploaded.");
}