Introducing Electric Raspberry: a robust and efficient C# minimal API backend, designed for high-performance web applications.
- Introduction
- Architecture
- Features
- Installation
- Usage
- Documentation
- Support and Feedback
- License
- Acknowledgements
The process flow of a query orchestration system involving an a browser, server and ChatGPT.
flowchart TD
%%{init: { 'theme': 'neutral' } }%%
A[User sends query] --> B[Server forwards request to ChatGPT]
B --> C[ChatGPT responds with answer]
C --> D{Finish Reason?}
D --> E[Stop] --> F[Server sends answer to User]
D --> G[Length]
G --> H[Server sends message to continue]
H --> B
D --> I[Tool Calls]
I --> J[Server executes tool call]
J --> B
The Chat history is updated via the following events.
timeline
%%{init: { 'theme': 'neutral' } }%%
User sends query to Server: User query added
Length: Partial answer added
Tool Calls: Call Tools
: Results added
Stop: Answer added