| 4 | import { ModelSettings, ProviderSettings } from "@/components/model-settings" |
| 5 | |
| 6 | interface Message { |
| 7 | role: string; |
| 8 | content: string; |
| 9 | } |
| 10 | |
| 11 | export async function generateMapResponseClient(query: string, conversationHistory?: Message[]) { |
| 12 | if (!query || typeof query !== "string") { |
nothing calls this directly
no outgoing calls
no test coverage detected