mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-21 15:21:36 +00:00
6 lines
126 B
C#
6 lines
126 B
C#
|
|
namespace AIStudio.Provider.Google;
|
|||
|
|
|
|||
|
|
public sealed record GoogleEmbedding
|
|||
|
|
{
|
|||
|
|
public List<float>? Values { get; init; }
|
|||
|
|
}
|