GenAI.Tool.Schema.String (GenAI Core v0.2.0)
Represents a schema for string types, converting JSON schema attributes to Elixir struct fields.
Link to this section Summary
Functions
Convert Json map to a GenAI.Tool.Schema.String
struct, handling naming conventions.
Check if json is of type
Link to this section Types
Link to this section Functions
Link to this function
from_json(attributes)
Convert Json map to a GenAI.Tool.Schema.String
struct, handling naming conventions.
examples
Examples
is-of-type
Is of Type
iex> GenAI.Tool.Schema.String.from_json(%{"type" => "string", "description" => "A string value"})
{:ok, %GenAI.Tool.Schema.String{type: "string", description: "A string value"}}
not-of-type
Not of Type
iex> GenAI.Tool.Schema.String.from_json(%{"type" => "number"})
{:error, :unrecognized_type}
Link to this function
is_type(arg1)
Check if json is of type
examples
Examples
is-of-type
Is of Type
iex> GenAI.Tool.Schema.String.is_type(%{"type" => "string"})
true
not-of-type
Not of Type
iex> GenAI.Tool.Schema.String.is_type(%{"type" => "number"})
false