(chat database.Chat, model string)
| 69 | } |
| 70 | |
| 71 | func aibridgeTestRequest(chat database.Chat, model string) modelClientRequest { |
| 72 | return modelClientRequest{ |
| 73 | Chat: chat, |
| 74 | ModelName: model, |
| 75 | UserAgent: chatprovider.UserAgent(), |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | func TestAIBridgeProviderFormatMapping(t *testing.T) { |
| 80 | t.Parallel() |
no test coverage detected