## Delete Session `client.Beta.Chat.Delete(ctx, sessionID, body) error` **delete** `/api/v1/chat/{session_id}` Delete a session. ### Parameters - `sessionID string` - `body BetaChatDeleteParams` - `OrganizationID param.Field[string]` - `ProjectID param.Field[string]` ### Example ```go package main import ( "context" "github.com/run-llama/llama-parse-go" "github.com/run-llama/llama-parse-go/option" ) func main() { client := llamacloudprod.NewClient( option.WithAPIKey("My API Key"), ) err := client.Beta.Chat.Delete( context.TODO(), "session_id", llamacloudprod.BetaChatDeleteParams{ }, ) if err != nil { panic(err.Error()) } } ```