Added OllamaProvider #3
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for the new
OllamaProvider
in the chatbot application, enabling integration with Ollama's API. The changes include adding the provider implementation, updating configurations, and extending the application to support the new provider.Integration of
OllamaProvider
:Provider Implementation:
OllamaProvider
class to handle interactions with Ollama's API, supporting both direct and proxy modes. The implementation includes methods for sending messages, constructing request bodies, and handling streaming responses. (src/providers/OllamaProvider.ts
)Configuration Types:
OllamaProviderConfig
type to define configurations for both direct and proxy modes, including options for API keys, response formats, and custom message parsers. (src/types/provider-config/OllamaProviderConfig.ts
)OllamaProviderMessage
type to standardize the message format for the provider. (src/types/provider-message/OllamaProviderMessage.ts
)Application Updates:
OllamaProvider
in the list of available providers insrc/App.tsx
andsrc/index.tsx
. (src/App.tsx
) [1] [2] [3]baseUrl
,mode
, anddebug
settings. (src/App.tsx
)