mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
12 lines
181 B
Go
12 lines
181 B
Go
package model_runtime
|
|
|
|
import "testing"
|
|
|
|
func TestLoad(t *testing.T) {
|
|
Load()
|
|
for _, p := range Providers() {
|
|
t.Logf("Provider: %s", p.ID())
|
|
t.Log(p.DefaultModel("llm"))
|
|
}
|
|
}
|