Skip to content
Open
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
configured_endpoints: 140
configured_endpoints: 136
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/ai.llamaindex.llamacloud/llama-cloud)](https://central.sonatype.com/artifact/ai.llamaindex.llamacloud/llama-cloud/1.6.0)
[![javadoc](https://javadoc.io/badge2/ai.llamaindex.llamacloud/llama-cloud/1.6.0/javadoc.svg)](https://javadoc.io/doc/ai.llamaindex.llamacloud/llama-cloud/1.5.1)
[![javadoc](https://javadoc.io/badge2/ai.llamaindex.llamacloud/llama-cloud/1.6.0/javadoc.svg)](https://javadoc.io/doc/ai.llamaindex.llamacloud/llama-cloud/1.6.0)

<!-- x-release-please-end -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import ai.llamaindex.llamacloud.services.blocking.ParsingService
import ai.llamaindex.llamacloud.services.blocking.PipelineService
import ai.llamaindex.llamacloud.services.blocking.ProjectService
import ai.llamaindex.llamacloud.services.blocking.RetrieverService
import ai.llamaindex.llamacloud.services.blocking.SheetService
import ai.llamaindex.llamacloud.services.blocking.SplitService
import ai.llamaindex.llamacloud.services.blocking.V2ProjectService
import ai.llamaindex.llamacloud.services.blocking.WebhookConfigService
Expand Down Expand Up @@ -61,8 +60,6 @@ interface LlamaCloudClient {

fun files(): FileService

fun sheets(): SheetService

fun split(): SplitService

fun parsing(): ParsingService
Expand Down Expand Up @@ -120,8 +117,6 @@ interface LlamaCloudClient {

fun files(): FileService.WithRawResponse

fun sheets(): SheetService.WithRawResponse

fun split(): SplitService.WithRawResponse

fun parsing(): ParsingService.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import ai.llamaindex.llamacloud.services.async.ParsingServiceAsync
import ai.llamaindex.llamacloud.services.async.PipelineServiceAsync
import ai.llamaindex.llamacloud.services.async.ProjectServiceAsync
import ai.llamaindex.llamacloud.services.async.RetrieverServiceAsync
import ai.llamaindex.llamacloud.services.async.SheetServiceAsync
import ai.llamaindex.llamacloud.services.async.SplitServiceAsync
import ai.llamaindex.llamacloud.services.async.V2ProjectServiceAsync
import ai.llamaindex.llamacloud.services.async.WebhookConfigServiceAsync
Expand Down Expand Up @@ -61,8 +60,6 @@ interface LlamaCloudClientAsync {

fun files(): FileServiceAsync

fun sheets(): SheetServiceAsync

fun split(): SplitServiceAsync

fun parsing(): ParsingServiceAsync
Expand Down Expand Up @@ -124,8 +121,6 @@ interface LlamaCloudClientAsync {

fun files(): FileServiceAsync.WithRawResponse

fun sheets(): SheetServiceAsync.WithRawResponse

fun split(): SplitServiceAsync.WithRawResponse

fun parsing(): ParsingServiceAsync.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ import ai.llamaindex.llamacloud.services.async.ProjectServiceAsync
import ai.llamaindex.llamacloud.services.async.ProjectServiceAsyncImpl
import ai.llamaindex.llamacloud.services.async.RetrieverServiceAsync
import ai.llamaindex.llamacloud.services.async.RetrieverServiceAsyncImpl
import ai.llamaindex.llamacloud.services.async.SheetServiceAsync
import ai.llamaindex.llamacloud.services.async.SheetServiceAsyncImpl
import ai.llamaindex.llamacloud.services.async.SplitServiceAsync
import ai.llamaindex.llamacloud.services.async.SplitServiceAsyncImpl
import ai.llamaindex.llamacloud.services.async.V2ProjectServiceAsync
Expand Down Expand Up @@ -61,10 +59,6 @@ class LlamaCloudClientAsyncImpl(private val clientOptions: ClientOptions) : Llam

private val files: FileServiceAsync by lazy { FileServiceAsyncImpl(clientOptionsWithUserAgent) }

private val sheets: SheetServiceAsync by lazy {
SheetServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val split: SplitServiceAsync by lazy {
SplitServiceAsyncImpl(clientOptionsWithUserAgent)
}
Expand Down Expand Up @@ -136,8 +130,6 @@ class LlamaCloudClientAsyncImpl(private val clientOptions: ClientOptions) : Llam

override fun files(): FileServiceAsync = files

override fun sheets(): SheetServiceAsync = sheets

override fun split(): SplitServiceAsync = split

override fun parsing(): ParsingServiceAsync = parsing
Expand Down Expand Up @@ -179,10 +171,6 @@ class LlamaCloudClientAsyncImpl(private val clientOptions: ClientOptions) : Llam
FileServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val sheets: SheetServiceAsync.WithRawResponse by lazy {
SheetServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val split: SplitServiceAsync.WithRawResponse by lazy {
SplitServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -256,8 +244,6 @@ class LlamaCloudClientAsyncImpl(private val clientOptions: ClientOptions) : Llam

override fun files(): FileServiceAsync.WithRawResponse = files

override fun sheets(): SheetServiceAsync.WithRawResponse = sheets

override fun split(): SplitServiceAsync.WithRawResponse = split

override fun parsing(): ParsingServiceAsync.WithRawResponse = parsing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ import ai.llamaindex.llamacloud.services.blocking.ProjectService
import ai.llamaindex.llamacloud.services.blocking.ProjectServiceImpl
import ai.llamaindex.llamacloud.services.blocking.RetrieverService
import ai.llamaindex.llamacloud.services.blocking.RetrieverServiceImpl
import ai.llamaindex.llamacloud.services.blocking.SheetService
import ai.llamaindex.llamacloud.services.blocking.SheetServiceImpl
import ai.llamaindex.llamacloud.services.blocking.SplitService
import ai.llamaindex.llamacloud.services.blocking.SplitServiceImpl
import ai.llamaindex.llamacloud.services.blocking.V2ProjectService
Expand Down Expand Up @@ -61,8 +59,6 @@ class LlamaCloudClientImpl(private val clientOptions: ClientOptions) : LlamaClou

private val files: FileService by lazy { FileServiceImpl(clientOptionsWithUserAgent) }

private val sheets: SheetService by lazy { SheetServiceImpl(clientOptionsWithUserAgent) }

private val split: SplitService by lazy { SplitServiceImpl(clientOptionsWithUserAgent) }

private val parsing: ParsingService by lazy { ParsingServiceImpl(clientOptionsWithUserAgent) }
Expand Down Expand Up @@ -124,8 +120,6 @@ class LlamaCloudClientImpl(private val clientOptions: ClientOptions) : LlamaClou

override fun files(): FileService = files

override fun sheets(): SheetService = sheets

override fun split(): SplitService = split

override fun parsing(): ParsingService = parsing
Expand Down Expand Up @@ -167,10 +161,6 @@ class LlamaCloudClientImpl(private val clientOptions: ClientOptions) : LlamaClou
FileServiceImpl.WithRawResponseImpl(clientOptions)
}

private val sheets: SheetService.WithRawResponse by lazy {
SheetServiceImpl.WithRawResponseImpl(clientOptions)
}

private val split: SplitService.WithRawResponse by lazy {
SplitServiceImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -244,8 +234,6 @@ class LlamaCloudClientImpl(private val clientOptions: ClientOptions) : LlamaClou

override fun files(): FileService.WithRawResponse = files

override fun sheets(): SheetService.WithRawResponse = sheets

override fun split(): SplitService.WithRawResponse = split

override fun parsing(): ParsingService.WithRawResponse = parsing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private constructor(
fun staticFilters(): Optional<StaticFilters> = body.staticFilters()

/**
* Maximum number of results to return.
* Maximum number of results to return. Values above 500 are capped at 500.
*
* @throws LlamaCloudInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand Down Expand Up @@ -422,7 +422,7 @@ private constructor(
body.staticFilters(staticFilters)
}

/** Maximum number of results to return. */
/** Maximum number of results to return. Values above 500 are capped at 500. */
fun topK(topK: Long?) = apply { body.topK(topK) }

/**
Expand Down Expand Up @@ -748,7 +748,7 @@ private constructor(
fun staticFilters(): Optional<StaticFilters> = staticFilters.getOptional("static_filters")

/**
* Maximum number of results to return.
* Maximum number of results to return. Values above 500 are capped at 500.
*
* @throws LlamaCloudInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -1064,7 +1064,7 @@ private constructor(
this.staticFilters = staticFilters
}

/** Maximum number of results to return. */
/** Maximum number of results to return. Values above 500 are capped at 500. */
fun topK(topK: Long?) = topK(JsonField.ofNullable(topK))

/**
Expand Down
Loading
Loading