-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance Ollama Model Integration and Type Definitions #809
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…y extendable to include more!)
Add provider filtering on model list
Added Google Generative AI (gemini) integration
let the ollama models be auto generated from ollama api
added download button to downloade generated code in a zip file
I have two accounts and one that commited is yunatamos
Sync with stackblitz upstream
docs: fix grammar in readme just cleaned up some awkward phrasing + fixed a few typos :) - kofi
Update README.md
Update README.md
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 improvements to the Ollama model integration and refines type definitions for better type safety and clarity. The changes are primarily focused on the
constants.ts
andtypes.ts
files.Key Changes:
In
constants.ts
:OllamaApiResponse
andOllamaModel
types.getOllamaModels
function to use the newly defined types.OllamaApiResponse
.OllamaModel
type instead ofany
.In
types.ts
:OllamaModel
interface exportable by adding theexport
keyword.These updates improve the overall type safety of the application, particularly in handling Ollama model data. They also enhance code readability and maintainability by using more specific types instead of
any
.The changes are minimal but impactful, ensuring better integration with the Ollama API and providing a more robust type system for future development.