We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 535bc1d commit c3595c2Copy full SHA for c3595c2
include/agents-cpp/agents/voice_agent.h
@@ -182,7 +182,7 @@ class VoiceAgent : public AutonomousAgent {
182
static void runUI(const std::string& media_dir, httplib::Server& svr, VoiceAgent& agent) {
183
// 1. SERVE THE UI
184
svr.Get("/", [&](const httplib::Request&, httplib::Response& res) {
185
- std::string html = Utils::loadHtmlFile(media_dir + "/ui/index.html");
+ std::string html = Utils::loadHtmlFile(media_dir);
186
res.set_content(html, "text/html");
187
});
188
0 commit comments