added basic flow and prompting

This commit is contained in:
grimsace
2026-07-01 15:33:12 -05:00
parent 6c306a4a0f
commit c3f6cc2375
5 changed files with 595 additions and 301 deletions
+2
View File
@@ -8,5 +8,7 @@ namespace finder2e_foundry_converter.Services
{
Task<List<string>> GetModelsAsync(string baseUrl);
Task<string> GenerateResponseAsync(string baseUrl, string model, string text, List<string> imagePaths);
// Ask a single prompt and return assistant's textual response (no streaming)
Task<string> AskAsync(string baseUrl, string model, string prompt, List<string> imagePaths);
}
}