Class: TogetherLLM
Unified language model interface
Extends
Constructors
new TogetherLLM()
new TogetherLLM(
init
?):TogetherLLM
Parameters
• init?: Partial
<OpenAI
>
Returns
Overrides
Defined in
packages/llamaindex/src/llm/together.ts:5
Properties
additionalChatOptions?
optional
additionalChatOptions:OpenAIAdditionalChatOptions
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:165
additionalSessionOptions?
optional
additionalSessionOptions:Omit
<Partial
<ClientOptions
>,"apiKey"
|"timeout"
|"maxRetries"
>
Inherited from
OpenAI
.additionalSessionOptions
Defined in
packages/llamaindex/src/llm/openai.ts:172
apiKey?
optional
apiKey:string
=undefined
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:168
maxRetries
maxRetries:
number
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:169
maxTokens?
optional
maxTokens:number
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:164
model
model:
string
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:161
session
session:
OpenAISession
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:171
temperature
temperature:
number
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:162
timeout?
optional
timeout:number
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:170
topP
topP:
number
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:163
Accessors
metadata
get
metadata():LLMMetadata
Returns
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:228
supportToolCall
get
supportToolCall():boolean
Returns
boolean
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:224
Methods
chat()
chat(params)
chat(
params
):Promise
<AsyncIterable
<ChatResponseChunk
<ToolCallLLMMessageOptions
>>>
Get a chat response from the LLM
Parameters
• params: LLMChatParamsStreaming
<OpenAIAdditionalChatOptions
, ToolCallLLMMessageOptions
>
Returns
Promise
<AsyncIterable
<ChatResponseChunk
<ToolCallLLMMessageOptions
>>>
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:305
chat(params)
chat(
params
):Promise
<ChatResponse
<ToolCallLLMMessageOptions
>>
Get a chat response from the LLM
Parameters
• params: LLMChatParamsNonStreaming
<OpenAIAdditionalChatOptions
, ToolCallLLMMessageOptions
>
Returns
Promise
<ChatResponse
<ToolCallLLMMessageOptions
>>
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:311
complete()
complete(params)
complete(
params
):Promise
<AsyncIterable
<CompletionResponse
>>
Get a prompt completion from the LLM
Parameters
• params: LLMCompletionParamsStreaming
Returns
Promise
<AsyncIterable
<CompletionResponse
>>
Inherited from
Defined in
packages/core/dist/llms/index.d.ts:168
complete(params)
complete(
params
):Promise
<CompletionResponse
>
Get a prompt completion from the LLM
Parameters
• params: LLMCompletionParamsNonStreaming
Returns
Promise
<CompletionResponse
>
Inherited from
Defined in
packages/core/dist/llms/index.d.ts:169
streamChat()
protected
streamChat(baseRequestParams
):AsyncIterable
<ChatResponseChunk
<ToolCallLLMMessageOptions
>>
Parameters
• baseRequestParams: ChatCompletionCreateParams
Returns
AsyncIterable
<ChatResponseChunk
<ToolCallLLMMessageOptions
>>
Inherited from
Defined in
packages/llamaindex/src/llm/openai.ts:387
toOpenAIMessage()
static
toOpenAIMessage(messages
):ChatCompletionMessageParam
[]
Parameters
• messages: ChatMessage
<ToolCallLLMMessageOptions
>[]
Returns
ChatCompletionMessageParam
[]