# Docs for v1 can be found by changing the above selector ^
from together import Together
import os
client = Together(
api_key=os.environ.get("TOGETHER_API_KEY"),
)
response = client.files.delete(id="file-id")
print(response){
"id": "<string>",
"deleted": true
}Delete a previously uploaded data file.
# Docs for v1 can be found by changing the above selector ^
from together import Together
import os
client = Together(
api_key=os.environ.get("TOGETHER_API_KEY"),
)
response = client.files.delete(id="file-id")
print(response){
"id": "<string>",
"deleted": true
}Documentation Index
Fetch the complete documentation index at: https://docs.together.ai/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?