Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magols/BlazorGPT
BlazorGPT is a Blazor Server application that uses Semantic Kernel plus OpenAI, Azure OpenAI and Ollama for inference and embeddings.
https://github.com/magols/BlazorGPT
blazor blazor-server chatgpt openai openai-api
Last synced: about 1 month ago
JSON representation
BlazorGPT is a Blazor Server application that uses Semantic Kernel plus OpenAI, Azure OpenAI and Ollama for inference and embeddings.
- Host: GitHub
- URL: https://github.com/magols/BlazorGPT
- Owner: magols
- License: mit
- Created: 2023-04-16T15:06:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-16T19:43:53.000Z (3 months ago)
- Last Synced: 2024-09-17T12:29:05.558Z (3 months ago)
- Topics: blazor, blazor-server, chatgpt, openai, openai-api
- Language: CSS
- Homepage:
- Size: 12.6 MB
- Stars: 61
- Watchers: 8
- Forks: 19
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-semantickernel - BlazorGPT
README
# BlazorGPT
A Blazor Server chat Razor class library and application that uses Semantic Kernel together with the GPT chat completion and embeddings endpoints available from both OpenAI and MS Azure OpenAI.
Local model support is provided through [Ollama](https://github.com/jmorganca/ollama).- Create and manage multiple chat sessions with history.
- Define your own custom system prompts and switch easily between them.
- QuickProfiles for quick access to your favorite text snippet shortcuts.
- Scripts with multiple steps for automating a sequence of steps in a conversation.
- Branch conversations into side conversations sharing the previous context. Inspired by Git.
- Restart a conversation from a previous step.
- Customize the chat experience with middleware and filters.
- Select Semantic Kernel plugins from GUI with the PluginsInterceptor. Mix semantic (text) and native (code) functions.Extensible. Create your own plugins in the form of IInterceptors that intercepts the chat messages and modify them before they are sent to the API.
[GitHub](https://github.com/magols/BlazorGPT)
[Installation instructions](docs/setup.md)
## Features
- GUI models config for chat and embeddings
![](docs/images/modelconfig.png)- Chat with GPT-3.5 or GPT-4, Ollama. Edit and restart chats from previous steps.
![](docs/images/chat_toolbox.png)
- Define your own custom system prompts
![System prompt dropdown grid](docs/images/syspromptgrid.png)- QuickProfiles for quick access to your favorite text snippet shortcuts
![](docs/images/QP.png)- Scripts with mutiple steps for automating a conversation
![](docs/images/editscript.png)
- Branching of conversations into side conversations with the same context
![](docs/images/hasbranch.png)
![](docs/images/branched.png)- Select which interceptors to run in pipeline
![](docs/images/config_interceptors.png)- Select which plugins to run in pipeline
![](docs/images/config_plugins.png)- Manage chat history
![](docs/images/history.png)