Replies: 1 comment
-
TODO: Write this better + link |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
LlmExecutionTools
is a container for all the tools needed to execute prompts to large language models like GPT-4.On its interface it exposes common methods for prompt execution.
Internally it calls OpenAI, Azure, GPU, proxy, cache, logging,...
LlmExecutionTools
an abstract interface that is implemented by concrete execution tools:OpenAiExecutionTools
AnthropicClaudeExecutionTools
AzureOpenAiExecutionTools
LangtailExecutionTools
BardExecutionTools
LamaExecutionTools
GpuExecutionTools
RemoteLlmExecutionTools
that connect to a remote server and run one of the above execution tools on that server.MockedEchoLlmExecutionTools
that is used for testing and mocking.LogLlmExecutionToolsWrapper
that is technically also an execution tools but it is more proxy wrapper around other execution tools that logs all calls to execution tools.Beta Was this translation helpful? Give feedback.
All reactions