my-deepseek-api / internal /httpapi /openai /shared /string_helpers.go
minhquang47's picture
Upload 546 files
21c0c38 verified
Raw
History Blame Contribute Delete
103 Bytes
package shared
func AsString(v any) string {
if s, ok := v.(string); ok {
return s
}
return ""
}