#ifndef MRJUNEJUNE_CONVERSATION_API_H
#define MRJUNEJUNE_CONVERSATION_API_H

#include "dowa/dowa.h"

boolean Conversation_API_Init(const char *database_path);
boolean Conversation_API_Enable_Inference(
    const char *sidecar_path,
    const char *copilot_cli_path);
void Conversation_API_Register_Routes(void);
void Conversation_API_Destroy(void);

#endif
