Class: Ollama()
This class both implements the LLM and Embedding interfaces.
Extends
Extended by
Implements
LLM
Omit
<OllamaBase
,"chat"
>
Ollama<
Options
>(nodes
,options
?):Promise
<BaseNode
<Metadata
>[]>
This class both implements the LLM and Embedding interfaces.
Type Parameters
• Options extends Record
<string
, unknown
>
Parameters
• options?: Options
Returns
Defined in
packages/llamaindex/src/llm/ollama.ts:57
Constructors
new Ollama()
new Ollama(
params
):Ollama
Parameters
• params: OllamaParams
Returns
Overrides
Defined in
packages/llamaindex/src/llm/ollama.ts:75
Properties
embedBatchSize
embedBatchSize:
number
Inherited from
Defined in
packages/core/dist/embeddings/index.d.ts:34
embedInfo?
optional
embedInfo:EmbeddingInfo
Inherited from
Defined in
packages/core/dist/embeddings/index.d.ts:35
getTextEmbeddings()
getTextEmbeddings: (
texts
) =>Promise
<number
[][]>
Optionally override this method to retrieve multiple embeddings in a single request
Parameters
• texts: string
[]
Returns
Promise
<number
[][]>
Inherited from
BaseEmbedding
.getTextEmbeddings
Defined in
packages/core/dist/embeddings/index.d.ts:44
hasStreaming
readonly
hasStreaming:true
=true
Defined in
packages/llamaindex/src/llm/ollama.ts:61
id
id:
string
Inherited from
Defined in
packages/core/dist/schema/index.d.ts:171
model
model:
string
Defined in
packages/llamaindex/src/llm/ollama.ts:66
ollama
ollama:
Ollama
Defined in
packages/llamaindex/src/llm/ollama.ts:63
options
options:
Partial
<Omit
<Options
,"temperature"
|"top_p"
|"num_ctx"
>> &Pick
<Options
,"temperature"
|"top_p"
|"num_ctx"
>
Defined in
packages/llamaindex/src/llm/ollama.ts:68
Accessors
metadata
get
metadata():LLMMetadata
Returns
Implementation of
Defined in
packages/llamaindex/src/llm/ollama.ts:87
Methods
abort()
abort():
void
Returns
void
Implementation of
Omit.abort
Defined in
packages/llamaindex/src/llm/ollama.ts:205
chat()
chat(params)
chat(
params
):Promise
<AsyncIterable
<ChatResponseChunk
>>
Get a chat response from the LLM
Parameters
• params: LLMChatParamsStreaming
<object
, object
>
Returns
Promise
<AsyncIterable
<ChatResponseChunk
>>
Implementation of
Defined in
packages/llamaindex/src/llm/ollama.ts:99
chat(params)
chat(
params
):Promise
<ChatResponse
<object
>>
Get a chat response from the LLM
Parameters
• params: LLMChatParamsNonStreaming
<object
, object
>
Returns
Promise
<ChatResponse
<object
>>
Implementation of
Defined in
packages/llamaindex/src/llm/ollama.ts:102
complete()
complete(params)
complete(
params
):Promise
<AsyncIterable
<CompletionResponse
>>
Get a prompt completion from the LLM
Parameters
• params: LLMCompletionParamsStreaming
Returns
Promise
<AsyncIterable
<CompletionResponse
>>
Implementation of
Defined in
packages/llamaindex/src/llm/ollama.ts:140
complete(params)
complete(
params
):Promise
<CompletionResponse
>
Get a prompt completion from the LLM
Parameters
• params: LLMCompletionParamsNonStreaming
Returns
Promise
<CompletionResponse
>
Implementation of
Defined in
packages/llamaindex/src/llm/ollama.ts:143
copy()
copy(
request
):Promise
<StatusResponse
>
Parameters
• request: CopyRequest
Returns
Promise
<StatusResponse
>
Implementation of
Omit.copy
Defined in
packages/llamaindex/src/llm/ollama.ts:241
create()
create(request)
create(
request
):Promise
<AsyncGenerator
<ProgressResponse
,any
,unknown
>>
Parameters
• request: CreateRequest
& object
Returns
Promise
<AsyncGenerator
<ProgressResponse
, any
, unknown
>>
Implementation of
Omit.create
Defined in
packages/llamaindex/src/llm/ollama.ts:220
create(request)
create(
request
):Promise
<ProgressResponse
>
Parameters
• request: CreateRequest
& object
Returns
Promise
<ProgressResponse
>
Implementation of
Omit.create
Defined in
packages/llamaindex/src/llm/ollama.ts:223
delete()
delete(
request
):Promise
<StatusResponse
>
Parameters
• request: DeleteRequest
Returns
Promise
<StatusResponse
>
Implementation of
Omit.delete
Defined in
packages/llamaindex/src/llm/ollama.ts:238
embeddings()
embeddings(
request
):Promise
<EmbeddingsResponse
>
Parameters
• request: EmbeddingsRequest