Mercurial
comparison mrjunejune/conversation_api.h @ 260:1f9877b637e9
Add Copilot-powered cyberpunk JRPG chat
Integrate the production JRPG chat with Seobeo streaming, Deita persistence, and a Bazel-managed Copilot SDK and LiteLLM inference stack.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Wed, 05 Aug 2026 09:19:41 -0700 |
| parents | |
| children | 04fee26ecce0 |
comparison
equal
deleted
inserted
replaced
| 259:667156fcd3e3 | 260:1f9877b637e9 |
|---|---|
| 1 #ifndef MRJUNEJUNE_CONVERSATION_API_H | |
| 2 #define MRJUNEJUNE_CONVERSATION_API_H | |
| 3 | |
| 4 #include "dowa/dowa.h" | |
| 5 | |
| 6 boolean Conversation_API_Init(const char *database_path); | |
| 7 boolean Conversation_API_Enable_Inference( | |
| 8 const char *sidecar_path, | |
| 9 const char *copilot_cli_path); | |
| 10 void Conversation_API_Register_Routes(void); | |
| 11 void Conversation_API_Destroy(void); | |
| 12 | |
| 13 #endif |